nixos-configuration/modules/globalinstalls.nix

25 lines
418 B
Nix

{pkgs, ...}: {
config = {
environment = {
pathsToLink = ["/share/zsh"];
systemPackages = with pkgs; [
pciutils
ncdu
tldr
glances
];
};
programs = {
zsh.enable = true;
htop.enable = true;
iotop.enable = true;
nano.syntaxHighlight = true;
git = {
enable = true;
package = pkgs.gitFull;
};
};
};
}