nixos-configs/nixosModules/globalinstalls.nix

31 lines
476 B
Nix
Raw Normal View History

2025-09-13 15:25:54 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ncdu
glances
lsof
dig
screen
tldr
nix-output-monitor
2026-04-10 11:44:58 +02:00
git-credential-oauth
2025-09-13 15:25:54 +02:00
];
programs = {
zsh.enable = true;
htop.enable = true;
iotop.enable = true;
git.enable = true;
nano = {
enable = true;
syntaxHighlight = true;
};
};
2026-04-10 11:44:58 +02:00
environment.etc."gitconfig".text = ''
[credential]
helper = oauth
credentialStore = cache
'';
2025-09-13 15:25:54 +02:00
}