marleyos/modules/home/shell/wayland.nix
2025-05-26 17:04:43 -07:00

18 lines
450 B
Nix

{
lib,
config,
pkgs,
...
}: {
options.marleyos.shell.wayland.enable = lib.mkEnableOption "wayland";
config = lib.mkIf (config.marleyos.shell.wayland.enable && pkgs.stdenv.isLinux) {
# 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"];
};
};
};
}