From 74ae6096fd099931f3173bf85a946542ef805c0e Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Sat, 12 Oct 2024 20:24:27 +0200 Subject: [PATCH] chore: drop ssh-cursed module --- configurations.nix | 1 - modules/ssh-cursed.nix | 36 ------------------------------------ 2 files changed, 37 deletions(-) delete mode 100644 modules/ssh-cursed.nix diff --git a/configurations.nix b/configurations.nix index 266da19..dc67926 100644 --- a/configurations.nix +++ b/configurations.nix @@ -32,7 +32,6 @@ let ./modules/hosts.nix ./modules/network.nix ./modules/zsh.nix - ./modules/ssh-cursed.nix # FIXME: ./modules/buildbot — whenever you are ready. diff --git a/modules/ssh-cursed.nix b/modules/ssh-cursed.nix deleted file mode 100644 index deb956d..0000000 --- a/modules/ssh-cursed.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ - 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 - - ''; - -}