20 lines
420 B
Nix
20 lines
420 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
programs.ssh = {
|
|
enable = true;
|
|
matchBlocks = {
|
|
"git.wastring.com" = {
|
|
hostname = "git.wastring.com";
|
|
port = 55503;
|
|
user = "git";
|
|
identityFile = "/home/fw/.ssh/gitea";
|
|
};
|
|
"wastring.com" = {
|
|
hostname = "wastring.com";
|
|
port = 55502;
|
|
user = "fw";
|
|
identityFile = "/home/fw/.ssh/id_rsa";
|
|
};
|
|
};
|
|
};
|
|
}
|