28 lines
480 B
Nix
28 lines
480 B
Nix
{ pkgs, domain, ... }:
|
|
{
|
|
home = {
|
|
packages = with pkgs; [ sshfs ];
|
|
file.".ssh/config".text = ''
|
|
HOST nxace
|
|
HostName ssh.${domain}
|
|
User nx2
|
|
Port 50022
|
|
|
|
HOST nxacel
|
|
HostName 10.0.1.1
|
|
User nx2
|
|
Port 50022
|
|
|
|
HOST nxrpil
|
|
HostName 10.0.1.31
|
|
User nx2
|
|
Port 22
|
|
|
|
HOST nxgit
|
|
HostName ssh.${domain}
|
|
User git
|
|
Port 50022
|
|
'';
|
|
};
|
|
}
|