dotfiles/common/systemModules/crypt.nix

21 lines
279 B
Nix
Raw Normal View History

2024-10-02 17:19:34 -04:00
{ pkgs, ... }: {
environment = {
systemPackages = with pkgs; [
gnupg
openssh
pinentry-curses
pinentry
];
};
programs = {
ssh = {
startAgent = true;
};
gnupg = {
agent = {
enable = true;
};
};
};
}