diff options
author | Soispha <soispha@vhack.eu> | 2023-06-17 09:25:24 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-06-17 09:52:37 +0200 |
commit | 669f7b41912bcff635d7b4197110e9b83c0c2981 (patch) | |
tree | cf3d6fb8da371ccb6c78259a24e2da3a7c884737 /system/services | |
parent | Build(flake): Update (diff) | |
download | nixos-config-669f7b41912bcff635d7b4197110e9b83c0c2981.tar.gz nixos-config-669f7b41912bcff635d7b4197110e9b83c0c2981.zip |
Fix(system/services/nix): Use nixStable as unstable is broken right now
Diffstat (limited to '')
-rw-r--r-- | system/services/nix/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/services/nix/default.nix b/system/services/nix/default.nix index 618ed9c7..8b078106 100644 --- a/system/services/nix/default.nix +++ b/system/services/nix/default.nix @@ -10,7 +10,7 @@ nixpkgs = nixpkgs-as-input; in { nix = { - package = pkgs.nixUnstable; + package = pkgs.nixStable; registry = { nixpkgs.flake = nixpkgs; @@ -35,8 +35,8 @@ in { #trusted-public-keys = ["cache.ngi0.nixos.org-1:KqH5CBLNSyX184S9BKZJo1LxrxJ9ltnY2uAs5c/f1MA="]; fallback = true; # TODO what does this do? - keep-failed = true; #keep failed tmp build dirs - pure-eval = true; # restrict file system and network access to hash + keep-failed = true; # keep failed tmp build dirs + pure-eval = true; # restrict file system and network access to hash }; }; } |