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