nixos-config/base/programs.nix

70 lines
1 KiB
Nix
Raw Normal View History

2022-04-10 11:54:58 +02:00
{pkgs, ...}: {
2021-03-24 21:55:57 +01:00
programs = {
fish.enable = true;
gnupg.agent = {
enable = true;
2022-04-08 11:36:50 +02:00
pinentryFlavor = "gnome3";
2021-03-24 21:55:57 +01:00
};
2021-03-24 22:17:07 +01:00
less.enable = true;
2021-03-24 21:55:57 +01:00
mosh.enable = true;
2021-03-24 22:23:56 +01:00
ssh = {
startAgent = true;
extraConfig = ''
AddKeysToAgent yes
'';
};
2021-04-23 23:42:54 +02:00
# setcap wrapper for network permissions
bandwhich.enable = true;
2021-03-24 21:55:57 +01:00
};
2022-01-11 16:08:21 +01:00
environment.systemPackages = builtins.attrValues {
2022-04-10 11:54:58 +02:00
inherit
(pkgs)
2022-01-11 16:08:21 +01:00
# shell usage
2022-04-10 11:54:58 +02:00
2022-01-11 16:08:21 +01:00
fd
ripgrep
sd
tmux
tokei
tree
wget
2022-06-20 13:35:36 +02:00
jq
2022-01-11 16:08:21 +01:00
# development
2022-04-10 11:54:58 +02:00
2022-04-10 11:40:52 +02:00
alejandra
2022-01-11 16:08:21 +01:00
git
git-crypt
git-lfs
gnumake
gnupg
kakoune
2022-04-08 11:36:50 +02:00
pinentry-gnome
2022-01-11 16:08:21 +01:00
python3
vim
# terminal utilities
2022-04-10 11:54:58 +02:00
2022-01-11 16:08:21 +01:00
bottom
dogdns
du-dust
htop
ldns # drill
tealdeer
unzip
zip
# nix pkgs lookup
2022-04-10 11:54:58 +02:00
2022-01-11 16:08:21 +01:00
nix-index
2022-01-17 21:56:41 +01:00
agenix
2022-06-20 13:35:36 +02:00
cachix
2022-04-10 11:54:58 +02:00
;
2022-01-11 16:08:21 +01:00
2022-04-10 11:54:58 +02:00
inherit
(pkgs.llvmPackages_11)
2022-01-11 16:08:21 +01:00
bintools
clang
2022-04-10 11:54:58 +02:00
;
2022-01-11 16:08:21 +01:00
};
2021-03-24 21:55:57 +01:00
}