diff --git a/modules/ssh-cursed.nix b/modules/ssh-cursed.nix new file mode 100644 index 0000000..deb956d --- /dev/null +++ b/modules/ssh-cursed.nix @@ -0,0 +1,36 @@ +{ + 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 + + ''; + +}