dotfiles/users/functionalhacker/programs/ssh.nix

20 lines
297 B
Nix

{ ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
moria = {
hostname = "korhonen.cc";
user = "balrog";
port = 221;
};
forgejo = {
hostname = "git.korhonen.cc";
user = "git";
port = 2882;
};
};
};
}