nix-dotfiles/modules/hm/keychain.nix
2023-07-19 10:42:09 +01:00

10 lines
216 B
Nix

{
programs.keychain = {
enable = true;
keys = [ "id_ed25519" ];
agents = [ "gpg" "ssh" ];
enableBashIntegration = true;
enableZshIntegration = true;
enableXsessionIntegration = true;
};
}