fix(repl): don't inherit lib
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-11-21 13:31:19 -05:00
parent 1b528a15d0
commit 84c7944ba6

View file

@ -22,7 +22,7 @@
pkgs = self.inputs.nixpkgs.legacyPackages.${currentSystem} or {};
lib =
if pkgs != {}
then {inherit (pkgs) lib;}
then pkgs.lib
else {};
in
{inherit lib pkgs self;}