diff options
Diffstat (limited to 'common/nix.nix')
-rw-r--r-- | common/nix.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/nix.nix b/common/nix.nix index 71cca52..e31bcbf 100644 --- a/common/nix.nix +++ b/common/nix.nix | |||
@@ -4,15 +4,15 @@ inputs: | |||
4 | 4 | ||
5 | { | 5 | { |
6 | nix = { | 6 | nix = { |
7 | autoOptimiseStore = true; | ||
8 | gc = { | 7 | gc = { |
9 | automatic = true; | 8 | automatic = true; |
10 | dates = "03:15"; | 9 | dates = "03:15"; |
11 | options = "--delete-older-than 30d"; | 10 | options = "--delete-older-than 30d"; |
12 | }; | 11 | }; |
13 | 12 | ||
14 | extraOptions = '' | 13 | settings = { |
15 | experimental-features = nix-command flakes | 14 | auto-optimise-store = true; |
16 | ''; | 15 | extra-experimental-features = ["nix-command" "flakes"]; |
16 | }; | ||
17 | }; | 17 | }; |
18 | } | 18 | } |