Home manager stable only creates this on xorg. It is fixed in future versions.
13 lines
266 B
Nix
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"];
|
|
};
|
|
};
|
|
}
|