nixpkgs/home/programs/ssh.nix
Daniel Siepmann 6dbecabf40
Use KeepassXC as SSH Agent
This replaces the configuration of files per ssh match block,
as well as the need for keychain.

See: https://keepassxc.org/docs/KeePassXC_UserGuide#_ssh_agent
2023-05-24 19:54:41 +02:00

20 lines
254 B
Nix

_:
{
enable = true;
matchBlocks = {
"*" = {
extraOptions = {
UpdateHostKeys = "yes";
};
};
"github.com" = {
user = "git";
hostname = "github.com";
};
} // import ./ssh-match-blocks.nix { };
}