nixos-configuration/modules/globalinstalls.nix

35 lines
519 B
Nix
Raw Normal View History

{pkgs, ...}: {
config = {
2023-09-24 12:39:28 +02:00
environment = {
pathsToLink = ["/share/zsh"];
systemPackages = with pkgs; [
ncdu
glances
2023-12-16 12:38:58 +01:00
iotop
pciutils
lsof
2023-12-05 15:00:22 +01:00
dig
2023-12-16 12:38:58 +01:00
screen
tldr
2023-09-24 12:39:28 +02:00
];
};
programs = {
zsh.enable = true;
htop.enable = true;
iotop.enable = true;
nano = {
enable = true;
syntaxHighlight = true;
};
git = {
enable = true;
package = pkgs.gitFull;
};
2023-09-24 12:39:28 +02:00
};
};
}