12 lines
206 B
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
|
|
];
|
|
}
|