From 2aa87cffb8368763fa7bc5b37b78f9853f40c422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Thu, 28 May 2026 18:23:10 +0200 Subject: [PATCH] hyperhive host: force ssl, ssh alias for hyperforge --- homeConfigurations/muede/ssh.nix | 4 ++++ nixosConfigurations/hetzner-vpn2/nginx.nix | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/homeConfigurations/muede/ssh.nix b/homeConfigurations/muede/ssh.nix index 8f85661..52cc5eb 100644 --- a/homeConfigurations/muede/ssh.nix +++ b/homeConfigurations/muede/ssh.nix @@ -55,6 +55,10 @@ HostName = "forgejo-runner-1.dev.zerforschen.plus"; User = "root"; }; + "hyperforge" = { + HostName = "hyperforge.darkest.space"; + User = "root"; + }; }; }; } diff --git a/nixosConfigurations/hetzner-vpn2/nginx.nix b/nixosConfigurations/hetzner-vpn2/nginx.nix index 6c57361..0ee2f3c 100644 --- a/nixosConfigurations/hetzner-vpn2/nginx.nix +++ b/nixosConfigurations/hetzner-vpn2/nginx.nix @@ -43,7 +43,7 @@ in }; "hyperhive.darkest.space" = { - addSSL = true; + forceSSL = true; enableACME = true; root = hyperhive-website.packages.${pkgs.stdenv.hostPlatform.system}.default; };