summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2022-08-17 14:00:19 +0100
committerGitHub <noreply@github.com>2022-08-17 14:00:19 +0100
commit91efad532608b2d5aedc2ce40e8daf5844f1ac74 (patch)
tree88197df546363895dc7194d0f1722cc6e803b08f /lib
parent2fc06462ce5c31d363686b110b42d653b6f8f366 (diff)
parent6b3d6452eb0ecd019468eff149b023560360e566 (diff)
Merge pull request #8 from nix-community/no-impure
No impure
Diffstat (limited to 'lib')
-rw-r--r--lib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/default.nix b/lib/default.nix
index 7793acf..beba1b0 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -1,4 +1,5 @@
-with import <nixpkgs/lib>;
+{ lib }:
+with lib;
with builtins;
let {
@@ -130,5 +131,4 @@ let {
mount.table = q: x:
foldl' recursiveUpdate {} (imap (index: mount-f (q // { inherit index; })) x.partitions);
-
}