added niri

This commit is contained in:
Geir Okkenhaug Jerstad 2025-06-10 20:33:54 +02:00
parent cdbce471ba
commit 8029d93a84
10 changed files with 837 additions and 2 deletions

13
modules/desktop/niri.nix Normal file
View file

@ -0,0 +1,13 @@
{
config,
lib,
pkgs,
...
}: {
programs.niri.enable = true;
environment.systemPackages = with pkgs; [
# Niri scrolling window manager
niri
alacritty
];
}