nixos-configuration/modules/globalinstalls.nix
Vinzenz Schroeter 04ccf5cdd4 add dig
2023-12-05 15:00:22 +01:00

29 lines
474 B
Nix

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