marleyos/modules/home/wayland/default.nix
punkfairie 6817826e04
fix(home): Manually create target.tray
Home manager stable only creates this on xorg. It is fixed in future
versions.
2025-02-28 18:50:09 -08:00

13 lines
266 B
Nix

{
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"];
};
};
}