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;
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;
};