Files
alo-cluster/common/global/nix.nix
2024-09-13 13:38:15 +01:00

12 lines
169 B
Nix

{
nix.settings.trusted-users = [
"root"
"@wheel"
];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}