From bb02774fadf1d7646bdf0b1ceca64bf750767a6c Mon Sep 17 00:00:00 2001 From: iFargle Date: Sun, 2 Jul 2023 16:56:44 +0900 Subject: [PATCH] test --- configuration.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configuration.nix b/configuration.nix index 58f7cf0e..5ac3d1af 100644 --- a/configuration.nix +++ b/configuration.nix @@ -49,7 +49,7 @@ enableIPv6 = false; firewall = { enable = true; - allowedTCPPorts = [ 22 ]; + allowedTCPPorts = [ ]; allowedUDPPorts = [ ]; }; }; @@ -148,19 +148,19 @@ # Garbage collection -- Keep the system clean nix.gc = { - automatic = true; - dates = "weekly"; - options = "--delete-older-than 7d"; + automatic = true; + dates = "daily"; + options = "--delete-older-than 7d"; }; # Fonts fonts = { fontconfig = { defaultFonts = { - emoji = [ "Noto Color Emoji" ]; + emoji = [ "Noto Color Emoji" ]; monospace = [ "JetBrainsMono Nerd Font" "Cascadia Code" "Sarasa Mono SC" ]; sansSerif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; - serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; + serif = [ "Arimo Nerd Font" "Sarasa Gothic SC" ]; }; includeUserConf = false; };