fix(hecuba): prevent running out of disk space

This commit is contained in:
2026-07-25 16:14:45 +02:00
parent 836404dc0b
commit e41bd7067c
+13
View File
@@ -59,6 +59,18 @@ in
security.sudo.wheelNeedsPassword = false;
nix.gc = {
automatic = true;
dates = "weekly";
options = "-d";
};
virtualisation.docker.autoPrune = {
enable = true;
dates = "weekly";
flags = [ "--all" ];
};
networking.firewall = {
enable = true;
allowedTCPPorts = [
@@ -78,5 +90,6 @@ in
enable = true;
maxretry = 5;
};
journald.extraConfig = "SystemMaxUse=500M";
};
}