marleyos/modules/home/wayland/default.nix

14 lines
266 B
Nix
Raw Normal View History

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