nixos-configuration/modules/globalinstalls.nix

24 lines
402 B
Nix
Raw Normal View History

{pkgs, ...}: {
config = {
2023-09-24 12:39:28 +02:00
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;
};
2023-09-24 12:39:28 +02:00
};
};
}