From bccc720ab16f8fe6ee311e6893e348f2ef0c8368 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 3 Mar 2025 19:21:32 -0800 Subject: [PATCH] feat(home/xwayland-satellite): Write module --- .../wayland/xwayland-satellite/default.nix | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 modules/home/programs/wayland/xwayland-satellite/default.nix diff --git a/modules/home/programs/wayland/xwayland-satellite/default.nix b/modules/home/programs/wayland/xwayland-satellite/default.nix new file mode 100644 index 0000000..6df4ab1 --- /dev/null +++ b/modules/home/programs/wayland/xwayland-satellite/default.nix @@ -0,0 +1,39 @@ +{ + lib, + config, + pkgs, + ... +}: let + cfg = config.marleyos.programs.xwayland-satellite; +in { + options.marleyos.programs.xwayland-satellite.enable = lib.mkEnableOption "xwayland-satellite"; + + config = lib.mkIf cfg.enable { + home.packages = with pkgs; [ + xwayland-satellite + ]; + + systemd.user.services."xwayland-satellite" = { + Unit = { + Description = "Xwayland outside your Wayland"; + BindsTo = ["xdg-desktop-autostart.target"]; + PartOf = ["xdg-desktop-autostart.target"]; + After = ["xdg-desktop-autostart.target"]; + Requisite = ["xdg-desktop-autostart.target"]; + }; + + Service = { + Type = "notify"; + NotifyAccess = "all"; + ExecStart = lib.getExe pkgs.xwayland-satellite; + StandardOutput = "journal"; + }; + + Install = { + WantedBy = ["xdg-desktop-autostart.target"]; + }; + }; + + home.sessionVariables.DISPLAY = ":0"; + }; +}