refactor(niri): rename the module to niri.nix for clarity

This commit is contained in:
2025-12-31 11:07:37 +01:00
parent 3ee5cfac97
commit 05245ea56b
2 changed files with 12 additions and 1 deletions

11
modules/nixos/niri.nix Normal file
View File

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