remove unnecessary scope import
1 file changed, 1 insertion(+), 3 deletions(-)
jump to
M shell.nix → shell.nix
@@ -1,5 +1,3 @@ -with builtins; - let sources = import ./nix/sources.nix;@@ -7,7 +5,7 @@ nixpkgs = sources.nixpkgs; pkgs = import nixpkgs { }; lib = import ./lib { inherit pkgs; }; - nixPath = concatStringsSep ":" (lib.mkNixPath sources); + nixPath = builtins.concatStringsSep ":" (lib.mkNixPath sources); in pkgs.mkShell {