1
0
Fork 0

Give Dimaga some breathing room; decrease generation retention time

This commit is contained in:
Aires 2024-03-24 13:17:10 -04:00
parent 856242332a
commit a1cc3e7f05
2 changed files with 6 additions and 3 deletions

View file

@ -21,7 +21,7 @@
"/" = { "/" = {
device = "/dev/disk/by-uuid/76d67291-5aed-4f2a-b71f-1c2871cefe24"; device = "/dev/disk/by-uuid/76d67291-5aed-4f2a-b71f-1c2871cefe24";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@" ]; options = [ "subvol=@,compress=zstd" ];
}; };
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/0C53-A645"; device = "/dev/disk/by-uuid/0C53-A645";
@ -29,7 +29,10 @@
}; };
}; };
swapDevices = [ ]; swapDevices = [{
device = "/swapfile";
size = 4096;
}];
networking = { networking = {
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View file

@ -84,7 +84,7 @@ with lib;
gc = { gc = {
automatic = true; automatic = true;
dates = "daily"; dates = "daily";
options = "--delete-older-than 30d"; options = "--delete-older-than 14d";
}; };
# Configure NixOS to use the same software channel as Flakes # Configure NixOS to use the same software channel as Flakes