fix(repl): don't inherit lib
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
1b528a15d0
commit
84c7944ba6
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
||||||
pkgs = self.inputs.nixpkgs.legacyPackages.${currentSystem} or {};
|
pkgs = self.inputs.nixpkgs.legacyPackages.${currentSystem} or {};
|
||||||
lib =
|
lib =
|
||||||
if pkgs != {}
|
if pkgs != {}
|
||||||
then {inherit (pkgs) lib;}
|
then pkgs.lib
|
||||||
else {};
|
else {};
|
||||||
in
|
in
|
||||||
{inherit lib pkgs self;}
|
{inherit lib pkgs self;}
|
||||||
|
|
Loading…
Reference in a new issue