diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-17 23:55:38 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-17 23:55:38 -0500 |
commit | e02f6109059ebbf2257461ab3bd895730b6f8788 (patch) | |
tree | 0c7c76ac4cd001be9ecda272cc1196c71b52cfd2 /modules | |
parent | 13c95c62f7f16a7cab89801dfce31fc97e7f0cd6 (diff) | |
download | nixos-config-e02f6109059ebbf2257461ab3bd895730b6f8788.tar.gz nixos-config-e02f6109059ebbf2257461ab3bd895730b6f8788.zip |
modules/default: Make sure that nixpkgs is in the nix path
Diffstat (limited to 'modules')
-rw-r--r-- | modules/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/default.nix b/modules/default.nix index e57947a..d6fb0b7 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -34,6 +34,7 @@ nix = { channel.enable = false; #registry.nixpkgs.flake = nixpkgs; + nixPath = lib.mkOrder 1000 ["nixpkgs=flake:nixpkgs"]; settings = { experimental-features = [ "nix-command" "flakes" ]; }; |