mirror of https://gitlab.crans.org/nounous/nixos
parent
f2aeee6fd5
commit
6238a10288
|
|
@ -17,6 +17,7 @@ in
|
|||
./nullmailer.nix
|
||||
./packages.nix
|
||||
./ssh.nix
|
||||
./store.nix
|
||||
./users.nix
|
||||
./virtualisation.nix
|
||||
];
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
{...}:
|
||||
{
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
dates = "04:15";
|
||||
# avoid to run nix gc on all machine at the same time
|
||||
randomizedDelaySec = "1h";
|
||||
options = "--delete-older-than 14d";
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue