system.nix: autoOptimiseStore = false by default

This commit is contained in:
2024-02-01 10:39:27 +08:00
parent 9e43844e14
commit a577616756
2 changed files with 1 additions and 2 deletions

View File

@@ -51,7 +51,6 @@ inputs:
"alderlake"
];
keepOutputs = true;
autoOptimiseStore = false;
};
nixpkgs =
{ march = "znver4"; cuda = { enable = true; capabilities = [ "8.9" ]; forwardCompat = false; }; };

View File

@@ -6,7 +6,7 @@ inputs:
marches = mkOption { type = types.nullOr (types.listOf types.nonEmptyStr); default = null; };
keepOutputs = mkOption { type = types.bool; default = false; };
substituters = mkOption { type = types.nullOr (types.listOf types.nonEmptyStr); default = null; };
autoOptimiseStore = mkOption { type = types.bool; default = true; };
autoOptimiseStore = mkOption { type = types.bool; default = false; };
};
config =
let