nixpkgs/home/programs/keychain.nix
Daniel Siepmann 5cc06b6967
Add keychain application
In order to not worry about ssh-agent integration, it will take care and
ask for passphrases on first zsh start.
2022-05-20 16:20:44 +02:00

14 lines
220 B
Nix

{ config, pkgs }:
{
enable = true;
keys = [
"id_rsa"
"id_ed25519"
];
enableBashIntegration = false;
enableFishIntegration = false;
enableZshIntegration = true;
enableXsessionIntegration = false;
}