add niri wm

This commit is contained in:
Vinzenz Schroeter 2025-03-16 10:25:59 +01:00
parent e75cd528d0
commit 8b79ccd411
23 changed files with 719 additions and 202 deletions

View file

@ -0,0 +1,32 @@
{ pkgs, ... }:
{
config = {
environment = {
systemPackages = with pkgs; [
ncdu
glances
iotop
pciutils
lsof
dig
screen
tldr
neofetch
];
};
programs = {
zsh.enable = true;
htop.enable = true;
iotop.enable = true;
git.enable = true;
nano = {
enable = true;
syntaxHighlight = true;
};
};
};
}