summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--shell.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/shell.nix b/shell.nix
index 81938c3f..8b4f463c 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,5 +1,3 @@
-with builtins;
-
 let
   sources = import ./nix/sources.nix;
 
@@ -7,7 +5,7 @@ let
   pkgs = import nixpkgs { };
   lib = import ./lib { inherit pkgs; };
 
-  nixPath = concatStringsSep ":" (lib.mkNixPath sources);
+  nixPath = builtins.concatStringsSep ":" (lib.mkNixPath sources);
 in
 pkgs.mkShell
 {