about summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-06-17 09:25:24 +0200
committerSoispha <soispha@vhack.eu>2023-06-17 09:52:37 +0200
commit669f7b41912bcff635d7b4197110e9b83c0c2981 (patch)
treecf3d6fb8da371ccb6c78259a24e2da3a7c884737 /system/services
parentBuild(flake): Update (diff)
downloadnixos-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.nix6
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
     };
   };
 }