nix-config/modules/utils/niri.nix
2025-06-29 12:35:34 +02:00

10 lines
164 B
Nix

{ pkgs, ... }:
{
programs.niri.enable = true;
# Install xwayland-satellite for xwayland support
systemPackages = with pkgs; [
xwayland-satellite
];
}