nixos-configuration/common/globalinstalls.nix
2024-10-27 12:33:35 +01:00

34 lines
487 B
Nix

{ pkgs, ... }:
{
config = {
environment = {
pathsToLink = [ "/share/zsh" ];
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;
};
};
};
}