Files
nixconfig/modules/nixos/niri.nix

12 lines
206 B
Nix

{ config, lib, pkgs, ... }:
{
# just enable and install niri
programs.niri.enable = true;
# Add compositor-related packages
environment.systemPackages = with pkgs; [
xwayland-satellite
];
}