feat: enable niri

This commit is contained in:
etwas 2025-06-29 12:35:34 +02:00
parent c63f948330
commit 2793140c90
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
2 changed files with 11 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{
imports = [
./agenix
./auth.nix
./gnome.nix
./printing.nix

10
modules/utils/niri.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
programs.niri.enable = true;
# Install xwayland-satellite for xwayland support
systemPackages = with pkgs; [
xwayland-satellite
];
}