Move dunst config from xmonad.nix to desktop.nix

Dunst works on both X11 and Wayland, so it belongs in the shared
desktop config rather than under the xmonad-specific module.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-09 01:13:10 -08:00
committed by Kat Huang
parent e05120791b
commit c89593946a
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,9 @@ makeEnable config "myModules.desktop" true {
services.gnome.gnome-keyring.enable = true;
# Visual notification manager
home-manager.sharedModules = [
{ imports = [ ./dunst.nix ]; }
];
environment.systemPackages = with pkgs; [
# Appearance

View File

@@ -34,8 +34,6 @@ makeEnable config "myModules.xmonad" true {
home-manager.sharedModules = [
{
imports = [ ./dunst.nix ];
services.autorandr.enable = true;
systemd.user.services.autorandr.Unit.ConditionEnvironment = "IMALISON_SESSION_TYPE=x11";