Compare commits

..

No commits in common. "c76755e211a3470de7036aece3bf19c1578033d7" and "320740561420468da7894a5a5de5b361401fd602" have entirely different histories.

2 changed files with 1 additions and 25 deletions

View file

@ -13,15 +13,10 @@ lib.mkIf osConfig.programs.firefox.enable {
name = "ny"; name = "ny";
isDefault = true; isDefault = true;
userChrome = '' userChrome = ''
/* Hides the native tabs */ /* hides the native tabs */
#TabsToolbar { #TabsToolbar {
visibility: collapse; visibility: collapse;
} }
/* Fixed width for the sidebar */
#sidebar-box {
max-width: 17.5% !important;
min-width: 17.5% !important;
}
''; '';
settings = { settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true; "toolkit.legacyUserProfileCustomizations.stylesheets" = true;

View file

@ -141,26 +141,7 @@
openFirewall = true; openFirewall = true;
host = "0.0.0.0"; host = "0.0.0.0";
}; };
radicale = {
enable = true;
# Documentation at <https://radicale.org/v3.html#configuration>
settings = {
server = {
hosts = [ "0.0.0.0:5232" ];
};
auth = {
type = "htpasswd";
htpasswd_filename = "/etc/radicale/users";
htpasswd_encryption = "autodetect";
};
storage = {
filesystem_folder = "/var/lib/radicale/collections";
};
};
};
}; };
networking.firewall.allowedTCPPorts = [ 5232 ];
# security.acme = { # security.acme = {
#acceptTerms = true; #acceptTerms = true;