Commit 8efccd277e99

Vincent Demeester <vincent@sbr.pm>
2019-05-11 17:56:51
profiles/users: disable some hold machines
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 0979339
Changed files (1)
modules
profiles
modules/profiles/users.nix
@@ -34,7 +34,7 @@ in
           shell = if config.programs.fish.enable then pkgs.fish else pkgs.bash;
           initialPassword = "changeMe";
           openssh.authorizedKeys.keys =
-            with import ../../assets/machines.nix; [ ssh.honshu.key ssh.kerkouane.key ssh.hokkaido.key ssh.california.key ssh.shikoku.key ssh.carthage.key ssh.wakasu.key ssh.vincent.key ssh.kobe.key ssh.houbeb.key ssh.phantom.key ssh.okinawa.key ];
+            with import ../../assets/machines.nix; [ ssh.kerkouane.key ssh.hokkaido.key ssh.california.key ssh.carthage.key ssh.wakasu.key ssh.vincent.key ssh.kobe.key ssh.houbeb.key ssh.phantom.key ssh.okinawa.key ];
             subUidRanges = [{ startUid = 100000; count = 65536; }];
             subGidRanges = [{ startGid = 100000; count = 65536; }];
         };
@@ -53,16 +53,10 @@ in
   Host carthage.vpn ${wireguard.ips.carthage}
     Hostname ${wireguard.ips.carthage}
     Port ${toString ssh.carthage.port}
-  Host honshu.vpn ${wireguard.ips.honshu}
-    Hostname ${wireguard.ips.honshu}
-  Host shikoku.vpn ${wireguard.ips.shikoku}
-    Hostname ${wireguard.ips.shikoku}
   Host hokkaido.vpn ${wireguard.ips.hokkaido}
     Hostname ${wireguard.ips.hokkaido}
-  Host massimo.vpn ${wireguard.ips.massimo}
-    Hostname ${wireguard.ips.massimo}
   Host wakasu.vpn ${wireguard.ips.wakasu}
-  Hostname ${wireguard.ips.wakasu}
+    Hostname ${wireguard.ips.wakasu}
     '';
   };
 }