nixos-configuration/common/globalinstalls.nix
2024-10-26 00:04:27 +02:00

36 lines
536 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;
nano = {
enable = true;
syntaxHighlight = true;
};
git = {
enable = true;
package = pkgs.gitFull;
};
};
};
}