From 6817826e04e8ae137ed8d2ebf73eec94f64e0c68 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Fri, 28 Feb 2025 18:50:09 -0800 Subject: [PATCH] fix(home): Manually create target.tray Home manager stable only creates this on xorg. It is fixed in future versions. --- modules/home/wayland/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 modules/home/wayland/default.nix 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"]; + }; + }; +}