update some attribute sets because of the 24.05 upgrade

This commit is contained in:
stupidcomputer 2024-06-16 20:29:22 -05:00
parent c1ff21e877
commit 085fadf2d0
3 changed files with 11 additions and 9 deletions

View File

@ -63,7 +63,7 @@
services.printing.enable = true; services.printing.enable = true;
services.avahi.enable = true; # runs the Avahi daemon 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 services.avahi.openFirewall = true; # opens the firewall for UDP port 5353
powerManagement.cpuFreqGovernor = "performance"; powerManagement.cpuFreqGovernor = "performance";

View File

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

View File

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