wip: add niri wm

This commit is contained in:
Sean Kovacs 2025-11-23 13:13:32 -05:00
commit eb4600f07c
Signed by: sckova
GPG key ID: 00F325187C68651A
7 changed files with 861 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
swaylock
fuzzel
xdg-desktop-portal
];
home.file.".config/niri" = {
source = ./config;
recursive = true;
force = true;
};
}