all repos — nixfiles @ 02801bdcd8a051e7621f7f03709a2dff37ef5557

System and user configuration, managed by nix and home-manager

remove unnecessary scope import
Alan Pearce alan@alanpearce.eu
Sat, 18 May 2024 18:43:59 +0200
commit

02801bdcd8a051e7621f7f03709a2dff37ef5557

parent

486a94c6d9b79a8a7f5c72d649ddd4e247eb7c07

1 files changed, 1 insertions(+), 3 deletions(-)

jump to
M shell.nixshell.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
 {