AutoOptimizeStore changed to new syntax.

This commit is contained in:
2022-10-17 15:41:28 +02:00
parent 9f8fea1f51
commit 426750bcb8
2 changed files with 23 additions and 20 deletions

View File

@@ -200,23 +200,3 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.05"; # Did you read the comment?
##### nix extra options #######
nix = {
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
'';
# package = pkgs.nixFlakes;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
persistent = true;
};
autoOptimiseStore = true;
};
}

23
extra-nixos.nix Normal file
View File

@@ -0,0 +1,23 @@
{ config, pkgs, ... }:
{
##### nix extra options #######
nix = {
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
'';
# package = pkgs.nixFlakes;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
persistent = true;
};
settings.auto-optimize-store = true;
};
}
}