This commit is contained in:
Sense T 2023-07-22 04:38:53 +00:00
parent 08ccd07b41
commit 1f157c17e4

View File

@ -56,7 +56,8 @@ in
}; };
}; };
nix.settings = { nix = {
settings = {
auto-optimise-store = true; auto-optimise-store = true;
experimental-features = [ experimental-features = [
"nix-command" "nix-command"
@ -78,9 +79,10 @@ in
]; ];
}; };
nix.gc = { gc = {
automatic = true; automatic = true;
dates = "weekly"; dates = "weekly";
options = "--delete-older-than 1w"; options = "--delete-older-than 1w";
}; };
};
} }