nix/programs/ssh.nix

16 lines
206 B
Nix
Raw Normal View History

2024-06-15 21:59:32 +02:00
{...}:
{
enable = true;
matchBlocks = {
"github.com" = {
user = "git";
identityFile = "~/.ssh/github";
};
"192.168.1.12" = {
identityFile = "~/.ssh/raspi";
};
};
}