16 lines
332 B
Nix
16 lines
332 B
Nix
{config, libs, pkgs, ... }:
|
|
{
|
|
# Enable Automatic Updates
|
|
system.autoUpgrade.enable = true;
|
|
system.autoUpgrade.allowReboot = true;
|
|
|
|
# Enable Automatic Garbage Collection
|
|
nix.gc = {
|
|
automatic = true;
|
|
randomizedDelaySec = "14m";
|
|
options = "-d";
|
|
};
|
|
|
|
# Use Links to save Disk Space
|
|
nix.optimise.automatic = true;
|
|
}
|