nixos-configuration/common/globalinstalls.nix

33 lines
449 B
Nix
Raw Permalink Normal View History

2024-10-27 12:33:35 +01:00
{ pkgs, ... }:
{
config = {
2023-09-24 12:39:28 +02:00
environment = {
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
2024-02-09 18:52:40 +01:00
neofetch
2023-09-24 12:39:28 +02:00
];
};
programs = {
zsh.enable = true;
htop.enable = true;
iotop.enable = true;
2024-10-26 14:59:00 +02:00
git.enable = true;
nano = {
enable = true;
syntaxHighlight = true;
};
2023-09-24 12:39:28 +02:00
};
};
}