28 lines
461 B
Nix
28 lines
461 B
Nix
{self, ...}: {
|
|
system.configurationRevision = self.rev or self.dirtyRev or null;
|
|
|
|
nix = {
|
|
gc = {
|
|
automatic = true;
|
|
interval = [
|
|
{
|
|
Hour = 4;
|
|
Minute = 15;
|
|
Weekday = 7;
|
|
}
|
|
];
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
optimise = {
|
|
automatic = true;
|
|
interval = [
|
|
{
|
|
Hour = 4;
|
|
Minute = 15;
|
|
Weekday = 7;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|