From 1df3eb0d7a3a6d0d66c37df876b49f4a51910b9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Thu, 28 May 2026 18:22:07 +0200 Subject: [PATCH 1/3] hyperhive: update url --- flake.lock | 12 ++++++------ flake.nix | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index c4ed183..5ca40ef 100644 --- a/flake.lock +++ b/flake.lock @@ -371,17 +371,17 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1779885470, - "narHash": "sha256-eXkIlzY7OCWW0P9RTi+B3UBKy1SU6cELNwEy50TVZkg=", + "lastModified": 1779974732, + "narHash": "sha256-/4P6dIPg62+kjFiwhm3BfzCMI93+HMqusIG4dVpyBxM=", "ref": "refs/heads/main", - "rev": "dfc944d5faf4da8b9a4852806c3a2c32b2c46532", - "revCount": 777, + "rev": "2d9109d1bd14ada2ec8a271741f3fe8c1a911b9f", + "revCount": 797, "type": "git", - "url": "https://git.berlin.ccc.de/vinzenz/hyperhive.git" + "url": "https://forge.darkest.space/hyperhive/hyperhive.git" }, "original": { "type": "git", - "url": "https://git.berlin.ccc.de/vinzenz/hyperhive.git" + "url": "https://forge.darkest.space/hyperhive/hyperhive.git" } }, "hyperhive-website": { diff --git a/flake.nix b/flake.nix index 9949386..46b5e52 100644 --- a/flake.nix +++ b/flake.nix @@ -14,7 +14,7 @@ #inputs.nixpkgs.follows = "nixpkgs"; }; hyperhive = { - url = "git+https://git.berlin.ccc.de/vinzenz/hyperhive.git"; + url = "git+https://forge.darkest.space/hyperhive/hyperhive.git"; inputs = { nixpkgs.follows = "nixpkgs"; nixpkgs-unstable.follows = "nixpkgs-unstable"; From ba5360c0943db85ac696a780f28e0d68c06e6d9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C3=BCde?= Date: Thu, 28 May 2026 18:22:36 +0200 Subject: [PATCH 2/3] nix fmt --- homeConfigurations/muede/default.nix | 7 ++++--- nixosConfigurations.nix | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/homeConfigurations/muede/default.nix b/homeConfigurations/muede/default.nix index 331d291..2b4bc17 100644 --- a/homeConfigurations/muede/default.nix +++ b/homeConfigurations/muede/default.nix @@ -74,11 +74,10 @@ arduino-cli arduino-ide btop - unstable.claude-code dconf2nix + file foliate fractal - file geary gnome-terminal gparted @@ -86,13 +85,15 @@ jetbrains-toolbox kdiff3 keepassxc - lutris + # lutris nextcloud-client onefetch servicepoint-cli servicepoint-simulator + tea telegram-desktop thunderbird + unstable.claude-code vlc wireguard-tools wirelesstools diff --git a/nixosConfigurations.nix b/nixosConfigurations.nix index 43e998a..1cfb029 100644 --- a/nixosConfigurations.nix +++ b/nixosConfigurations.nix @@ -69,7 +69,7 @@ forDevice ( time.timeZone = lib.mkDefault "Etc/UTC"; my = { - # keep-sorted start + # keep-sorted start block=yes autoupdate.enable = true; distributedBuilds.enable = true; extraCaches = { 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 3/3] 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; };