nixos-configuration/modules/globalinstalls.nix
2023-09-24 15:27:13 +02:00

24 lines
402 B
Nix

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