config/homes/common/ssh/default.nix

19 lines
372 B
Nix
Raw Normal View History

2024-09-15 12:56:25 +01:00
{
programs.ssh = {
enable = true;
matchBlocks = {
jet = {
identityFile = "~/.ssh/id_ed25519_sk";
hostname = "jet.echo.clicks.domains";
user = "maddie";
};
clicks = {
identityFile = "~/.ssh/clickscodes";
hostname = "git.clicks.codes";
port = 29418;
user = "maddie";
};
};
};
}