nixfiles/modules/common/packages.nix
2025-11-22 16:02:14 +01:00

37 lines
590 B
Nix

{ pkgs, agenix, ... }:
{
environment.systemPackages = with pkgs; [
# Utilities
git
neovim
helix
wget
ripgrep
eza
bat
tree
dust
pciutils
dig
man-pages
man-pages-posix
python3
cheat
# Nix
home-manager
nix-index
direnv
any-nix-shell
agenix.packages."${stdenv.hostPlatform.system}".default
age-plugin-yubikey
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}