mirror of
https://github.com/smg1024/homelab.git
synced 2026-05-22 20:32:58 +09:00
13 lines
183 B
Nix
13 lines
183 B
Nix
{ ... }:
|
|
|
|
{
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 14d";
|
|
};
|
|
|
|
nix.optimise.automatic = true;
|
|
|
|
boot.tmp.cleanOnBoot = true;
|
|
}
|