diff --git a/modules/home/wayland/default.nix b/modules/home/wayland/default.nix new file mode 100644 index 0000000..5e0021c --- /dev/null +++ b/modules/home/wayland/default.nix @@ -0,0 +1,13 @@ +{ + config, + lib, + ... +}: { + # Fix the "tray.target not found" error. + systemd.user.targets.tray = lib.mkIf (!config.xsession.enable) { + Unit = { + Description = "Home Manager System Tray"; + Requires = ["graphical-session-pre.target"]; + }; + }; +}