fix xwayland-satellite systemd service

This commit is contained in:
Osman Faruk Bayram 2025-12-11 09:31:15 +03:00
parent cf362dd3d9
commit da2d1cbbb2

View file

@ -93,22 +93,19 @@ in
swww swww
]; ];
# XWayland satellite service for X11 app support # XWayland satellite service for X11 app support
systemd.user.services.xwayland-satellite = { systemd.user.services.xwayland-satellite = {
Unit = { description = "Xwayland outside Wayland";
Description = "Xwayland outside Wayland"; bindsTo = [ "graphical-session.target" ];
BindsTo = "graphical-session.target"; after = [ "graphical-session.target" ];
After = "graphical-session.target"; wantedBy = [ "graphical-session.target" ];
}; serviceConfig = {
Service = {
Type = "notify"; Type = "notify";
NotifyAccess = "all"; NotifyAccess = "all";
ExecStart = "${pkgs.xwayland-satellite}/bin/xwayland-satellite"; ExecStart = "${pkgs.xwayland-satellite}/bin/xwayland-satellite";
StandardOutput = "journal"; StandardOutput = "journal";
Restart = "on-failure"; Restart = "on-failure";
}; };
Install.WantedBy = [ "graphical-session.target" ];
}; };
}) })