nixpkgs/home/programs/ssh.nix

20 lines
254 B
Nix
Raw Permalink Normal View History

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