39 lines
699 B
Nix
39 lines
699 B
Nix
{
|
|
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
|
|
git-credential-oauth
|
|
];
|
|
|
|
programs = {
|
|
zsh.enable = true;
|
|
htop.enable = true;
|
|
iotop.enable = true;
|
|
git.enable = true;
|
|
nano = {
|
|
enable = true;
|
|
syntaxHighlight = true;
|
|
};
|
|
};
|
|
|
|
environment.etc."gitconfig".text = ''
|
|
[credential]
|
|
helper = oauth
|
|
credentialStore = cache
|
|
'';
|
|
};
|
|
}
|