nixos-config/modules/core/program.nix

21 lines
336 B
Nix
Raw Normal View History

2025-06-09 13:11:50 +02:00
{ pkgs, agenix, ... }:
2023-11-05 17:56:55 +01:00
{
programs = {
dconf.enable = true;
zsh.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
# pinentryFlavor = "";
};
2023-11-05 11:40:44 +01:00
};
environment.systemPackages = with pkgs; [
wget
git
2025-06-09 13:11:50 +02:00
dig
traceroute
# agenix.packages.x86_64-linux.default
];
2023-11-05 11:40:44 +01:00
}