nix-configs/modules/desktop/home/niri/xwayland-sat.nix

10 lines
194 B
Nix
Raw Normal View History

2025-04-11 09:20:46 +02:00
{ pkgs, ... }:
{
2025-03-12 02:00:13 +01:00
programs.niri.settings = {
spawn-at-startup = [
2025-04-11 09:20:46 +02:00
{ command = [ "${pkgs.xwayland-satellite}/bin/xwayland-satellite" ]; }
2025-03-12 02:00:13 +01:00
];
environment.DISPLAY = ":0";
};
}