diff options
author | Alan Pearce | 2024-05-04 09:27:40 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-18 12:17:12 +0200 |
commit | 782e0000196146183ee4a7e91e60424c24652d2f (patch) | |
tree | b21a2690ed3ecbd7085f653d1ba53a1236708a58 /system/settings | |
parent | 72e7e31cefd86fba84924c9b579020a4b733426c (diff) | |
download | nixfiles-782e0000196146183ee4a7e91e60424c24652d2f.tar.lz nixfiles-782e0000196146183ee4a7e91e60424c24652d2f.tar.zst nixfiles-782e0000196146183ee4a7e91e60424c24652d2f.zip |
nix: set nix.nixPath
Diffstat (limited to 'system/settings')
-rw-r--r-- | system/settings/configuration/nix.nix | 1 | ||||
-rw-r--r-- | system/settings/pin.nix | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/system/settings/configuration/nix.nix b/system/settings/configuration/nix.nix index 57c7cedf..97cd7aeb 100644 --- a/system/settings/configuration/nix.nix +++ b/system/settings/configuration/nix.nix @@ -3,6 +3,7 @@ , pkgs , ... }: { + imports = [ ../pin.nix ]; nix = { settings = { cores = lib.mkDefault 0; diff --git a/system/settings/pin.nix b/system/settings/pin.nix new file mode 100644 index 00000000..e282cf66 --- /dev/null +++ b/system/settings/pin.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +let + lib = import ../../lib { inherit pkgs; }; + sources = import ../../nix/sources.nix; +in +{ + nix.nixPath = lib.mkNixPath sources; +} |