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

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;
};
}
}