nixos-config/modules/core/program.nix

17 lines
263 B
Nix

{ pkgs, ... }:
{
programs = {
dconf.enable = true;
zsh.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
# pinentryFlavor = "";
};
};
environment.systemPackages = with pkgs; [
wget
git
];
}