[NixOS] A ton of stuff

This commit is contained in:
2025-12-19 15:03:12 -08:00
parent b2230c993a
commit f79e7a527c
6 changed files with 142 additions and 72 deletions

View File

@@ -53,12 +53,22 @@ makeEnable config "myModules.xmonad" true {
services.network-manager-applet.enable = true;
# Disable the XDG autostart for nm-applet since we're managing it via systemd.
# The XDG autostart races with the systemd service and doesn't use --indicator.
xdg.configFile."autostart/nm-applet.desktop".text = ''
[Desktop Entry]
Hidden=true
'';
services.udiskie = {
enable = true;
tray = "always";
};
services.status-notifier-watcher.enable = true;
services.status-notifier-watcher = {
enable = true;
flags = ["--log-level" "DEBUG"];
};
services.autorandr.enable = true;