ChCh-Public-PCs-NIXOS-Config/maintenance.nix
fnord 29efa52ccd Initialer Upload
initialer Upload der Config Files
2025-04-23 19:23:20 +02:00

12 lines
263 B
Nix

{config, libs, pkgs, ... }:
{
# Enable Automatic Updates
system.autoUpgrade.enable = true;
system.autoUpgrade.allowReboot = true;
# Enable Automatic Garbage Collection
nix.gc.automatic = true;
# Use Links to save Disk Space
nix.optimise.automatic = true;
}