nixos-configuration/modules/globalinstalls.nix
Vinzenz Schroeter 8b79ccd411 add niri wm
2025-03-16 10:25:59 +01:00

33 lines
449 B
Nix

{ 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;
};
};
};
}