You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1009 B
Nix
37 lines
1009 B
Nix
1 year ago
|
{
|
||
|
programs.ssh.extraConfig = ''
|
||
|
Host telecom-bastion
|
||
|
HostName ssh.enst.fr
|
||
|
User jmalka
|
||
|
IdentityFile /home/luj/.ssh/id_ed25519
|
||
|
|
||
|
Host lame11
|
||
|
Hostname lame11.enst.fr
|
||
|
User nix-remote-builder
|
||
|
ProxyJump telecom-bastion
|
||
|
IdentityFile /home/luj/.ssh/id_ed25519
|
||
|
Host lame10
|
||
|
Hostname lame10.enst.fr
|
||
|
User nix-remote-builder
|
||
|
ProxyJump telecom-bastion
|
||
|
IdentityFile /home/luj/.ssh/id_ed25519
|
||
|
Host lame12
|
||
|
Hostname lame12.enst.fr
|
||
|
User nix-remote-builder
|
||
|
ProxyJump telecom-bastion
|
||
|
IdentityFile /home/luj/.ssh/id_ed25519
|
||
|
Host lame16
|
||
|
Hostname lame16.enst.fr
|
||
|
User nix-remote-builder
|
||
|
ProxyJump telecom-bastion
|
||
|
IdentityFile /home/luj/.ssh/id_ed25519
|
||
|
Host lame17
|
||
|
Hostname lame17.enst.fr
|
||
|
User nix-remote-builder
|
||
|
ProxyJump telecom-bastion
|
||
|
IdentityFile /home/luj/.ssh/id_ed25519
|
||
|
|
||
|
'';
|
||
|
|
||
|
}
|