nixos-config/base/programs.nix
Antoine Martin d8573cad9e base: move gpg agent to gui programs
It'll only get used on machines I can physically access
2022-11-14 20:30:51 +01:00

62 lines
878 B
Nix

{pkgs, ...}: {
programs = {
fish.enable = true;
less.enable = true;
mosh.enable = true;
# setcap wrapper for network permissions
bandwhich.enable = true;
};
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
# shell usage
fd
ripgrep
sd
tmux
tokei
tree
wget
jq
pciutils
usbutils
# development
alejandra
git
git-crypt
git-lfs
gnumake
gnupg
kakoune
pinentry-gnome
python3
vim
# terminal utilities
bottom
dogdns
du-dust
htop
ldns # drill
tealdeer
unzip
zip
# nix pkgs lookup
nix-index
agenix
cachix
;
inherit
(pkgs.llvmPackages_11)
bintools
clang
;
};
}