Merge branch 'xwayland'

* xwayland:
  feat(home/niri): Setup xwayland-satellite on niri
  fix(home/swaybg): Make it so the systemd unit can actually succeed at boot
  feat(home/xwayland-satellite): Write module
This commit is contained in:
punkfairie 2025-03-03 19:30:09 -08:00
commit 42b51ac2f6
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 51 additions and 3 deletions

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

View file

@ -15,14 +15,14 @@ in {
systemd.user.services.swaybg = { systemd.user.services.swaybg = {
Install = { Install = {
WantedBy = ["graphical-session.target"]; WantedBy = ["xdg-desktop-autostart.target"];
}; };
Unit = { Unit = {
Description = "Wallpaper tool for Wayland compositors"; Description = "Wallpaper tool for Wayland compositors";
Documentation = ["man:swaybg(1)"]; Documentation = ["man:swaybg(1)"];
After = ["graphical-session-pre.target"]; After = ["graphical-session.target"];
PartOf = ["graphical-session.target"]; PartOf = ["xdg-desktop-autostart.target"];
}; };
Service = { Service = {
@ -31,6 +31,9 @@ in {
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID"; ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
KillMode = "mixed"; KillMode = "mixed";
Restart = "on-failure"; Restart = "on-failure";
RestartSec = "1s";
RestartMaxDelaySec = "30s";
RestartSteps = 10;
}; };
}; };
}; };

View file

@ -23,6 +23,7 @@ in {
waybar.enable = true; waybar.enable = true;
wlogout.enable = true; wlogout.enable = true;
fuzzel.enable = true; fuzzel.enable = true;
xwayland-satellite.enable = true;
}; };
services = { services = {
swaybg.enable = true; swaybg.enable = true;
@ -40,6 +41,11 @@ in {
prefer-no-csd = true; prefer-no-csd = true;
hotkey-overlay.skip-at-startup = true; hotkey-overlay.skip-at-startup = true;
environment = {
# For some reason this won't set properly from home.sessionVariables.
DISPLAY = ":0";
};
### Startup Programs ### ### Startup Programs ###
spawn-at-startup = let spawn-at-startup = let
inherit (config.marleyos) apps; inherit (config.marleyos) apps;