32 lines
484 B
Nix
Executable File
32 lines
484 B
Nix
Executable File
{ pkgs, lib, user, ... }:
|
|
lib.mkIf (user != "tv")
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
sshfs
|
|
];
|
|
|
|
|
|
home.file.".ssh/config".text = ''
|
|
HOST nxace
|
|
HostName ssh.nx2.site
|
|
User nx2
|
|
Port 50022
|
|
|
|
HOST nxacel
|
|
HostName 192.168.178.32
|
|
User nx2
|
|
Port 50022
|
|
|
|
HOST nxrpil
|
|
HostName 192.168.178.31
|
|
User nx2
|
|
Port 22
|
|
|
|
HOST nxgit
|
|
HostName ssh.nx2.site
|
|
User git
|
|
Port 20022
|
|
'';
|
|
}
|