This commit is contained in:
iFargle 2023-07-02 16:56:44 +09:00
parent 67e11a1410
commit bb02774fad

View file

@ -49,7 +49,7 @@
enableIPv6 = false; enableIPv6 = false;
firewall = { firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 22 ]; allowedTCPPorts = [ ];
allowedUDPPorts = [ ]; allowedUDPPorts = [ ];
}; };
}; };
@ -149,7 +149,7 @@
# Garbage collection -- Keep the system clean # Garbage collection -- Keep the system clean
nix.gc = { nix.gc = {
automatic = true; automatic = true;
dates = "weekly"; dates = "daily";
options = "--delete-older-than 7d"; options = "--delete-older-than 7d";
}; };