We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b35c9e commit 79370fbCopy full SHA for 79370fb
hosts/darwin01/default.nix
@@ -1,4 +1,4 @@
1
-{ inputs, ... }:
+{ inputs, pkgs, ... }:
2
3
{
4
imports = [
@@ -16,4 +16,10 @@
16
nix.settings.system-features = [ "big-parallel" ];
17
18
system.stateVersion = 5;
19
+
20
+ # test auto-optimise-store fix
21
+ # https://github.com/NixOS/nix/pull/13241
22
+ nix.package = pkgs.nixVersions.nix_2_30;
23
+ nix.optimise.automatic = false;
24
+ nix.settings.auto-optimise-store = pkgs.lib.mkForce true;
25
}
0 commit comments