Merge branch 'main' of git.sr.ht:~geokkjer/NixOS_configs
This commit is contained in:
commit
2f7811c197
|
@ -34,6 +34,17 @@
|
|||
services.zfs.autoScrub.enable = true;
|
||||
services.zfs.trim.enable = true;
|
||||
|
||||
# Maintenance
|
||||
system.autoUpgrade.enable = true;
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
options = "--delete-older-than 10d";
|
||||
};
|
||||
nix.optimise.automatic = true;
|
||||
nix.optimise.dates = [ "03:45" ];
|
||||
nix.settings.auto-optimise-store = true;
|
||||
|
||||
# Firmware
|
||||
services.fwupd.enable = true;
|
||||
hardware.firmware = with pkgs; [ firmwareLinuxNonfree ];
|
||||
|
|
Loading…
Reference in a new issue