This commit is contained in:
stupidcomputer 2024-06-16 20:32:37 -05:00
commit e781396a19
3 changed files with 11 additions and 9 deletions

View File

@ -63,7 +63,7 @@
services.printing.enable = true;
services.avahi.enable = true; # runs the Avahi daemon
services.avahi.nssmdns = true; # enables the mDNS NSS plug-in
services.avahi.nssmdns4 = true; # enables the mDNS NSS plug-in
services.avahi.openFirewall = true; # opens the firewall for UDP port 5353
powerManagement.cpuFreqGovernor = "performance";

View File

@ -63,12 +63,13 @@
services.radicale = {
enable = true;
config = ''
[auth]
type = htpasswd
htpasswd_filename = radicale-passwd
htpasswd_encryption = plain
'';
settings = {
auth = {
type = "htpasswd";
htpasswd_filename = "radicale-passwd";
htpasswd_encryption = "plain";
};
};
};
services.rss2email = {

View File

@ -14,9 +14,10 @@
services.xserver = {
enable = true;
libinput.enable = true;
layout = "us";
xkb.layout = "us";
displayManager.sx.enable = true;
};
services.libinput.enable = true;
}