nix-config/modules/utils/niri.nix

10 lines
186 B
Nix

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