nixos-configs/nixosModules/globalinstalls.nix

32 lines
522 B
Nix
Raw Normal View History

2025-09-13 15:25:54 +02:00
{
lib,
config,
pkgs,
...
}:
{
options.my.globalinstalls.enable = lib.mkEnableOption "global system packages and tools";
config = lib.mkIf config.my.globalinstalls.enable {
environment.systemPackages = with pkgs; [
ncdu
glances
lsof
dig
screen
tldr
nix-output-monitor
];
2025-09-13 15:25:54 +02:00
programs = {
zsh.enable = true;
htop.enable = true;
iotop.enable = true;
nano = {
enable = true;
syntaxHighlight = true;
};
2025-09-13 15:25:54 +02:00
};
};
2025-09-13 15:25:54 +02:00
}