feat(home/xwayland-satellite): Write module

This commit is contained in:
punkfairie 2025-03-03 19:21:32 -08:00
parent 122fa9190b
commit bccc720ab1
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -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";
};
}