nix-configs/modules/desktop/home/niri/xwayland-sat.nix
2025-04-11 09:20:46 +02:00

9 lines
194 B
Nix

{ pkgs, ... }:
{
programs.niri.settings = {
spawn-at-startup = [
{ command = [ "${pkgs.xwayland-satellite}/bin/xwayland-satellite" ]; }
];
environment.DISPLAY = ":0";
};
}