diff options
| author | 2025-03-02 17:46:41 +0300 | |
|---|---|---|
| committer | 2025-03-02 17:46:41 +0300 | |
| commit | ca760a0a99f1142bb095b9ac810d93911e3e350d (patch) | |
| tree | bec68790c0212d62a91373021595fc01b7014f6f /user-mora.nix | |
| parent | feat(sapphire): install `flatpak` (diff) | |
| download | nixos-configuration-ca760a0a99f1142bb095b9ac810d93911e3e350d.tar.gz nixos-configuration-ca760a0a99f1142bb095b9ac810d93911e3e350d.tar.bz2 nixos-configuration-ca760a0a99f1142bb095b9ac810d93911e3e350d.tar.lz nixos-configuration-ca760a0a99f1142bb095b9ac810d93911e3e350d.tar.xz nixos-configuration-ca760a0a99f1142bb095b9ac810d93911e3e350d.tar.zst nixos-configuration-ca760a0a99f1142bb095b9ac810d93911e3e350d.zip | |
feat(mora): add `xwayland-satellite` service
Diffstat (limited to 'user-mora.nix')
| -rw-r--r-- | user-mora.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/user-mora.nix b/user-mora.nix index b03e72f..e62c832 100644 --- a/user-mora.nix +++ b/user-mora.nix @@ -139,4 +139,15 @@ Restart = "on-failure"; }; }; + + systemd.user.services.xwayland-satellite = { + Unit.PartOf = [ "graphical-session.target" ]; + Unit.After = [ "niri.service" ]; + Unit.Wants = [ "niri.service" ]; + Install.WantedBy = [ "graphical-session.target" ]; + Service = { + ExecStart = "${pkgs.xwayland-satellite}/bin/xwayland-satellite"; + Restart = "on-failure"; + }; + }; } |
