10 lines
263 B
Nix
10 lines
263 B
Nix
{
|
|
programs.keychain = {
|
|
enable = true;
|
|
keys = [ "id_ed25519" "bitbucket" "github" "gitlab" "heroku" "local" ];
|
|
agents = [ "gpg" "ssh" ];
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
enableXsessionIntegration = true;
|
|
};
|
|
}
|