about summary refs log tree commit diff
path: root/users/tazjin
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2024-09-14T23·57+0300
committerclbot <clbot@tvl.fyi>2024-09-15T00·18+0000
commit10c2866ccd61bedb9fe82f0a7f5284af91a301bd (patch)
tree8f4c29c5174b21b6b0002e5058e7287caaaaa299 /users/tazjin
parent767bc726efa383561dd0805fc455672765ac7c8c (diff)
fix(tazjin/nixos): set rad.tazj.in as preferred seed in explorer r/8697
This requires overriding build-time configuration, so I've added a little fixed
point that takes care of that.

Change-Id: Ie990e362c6e00aa6e3be66b04af4b62034b03515
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12489
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin')
-rw-r--r--users/tazjin/nixos/koptevo/default.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/users/tazjin/nixos/koptevo/default.nix b/users/tazjin/nixos/koptevo/default.nix
index 426495d77fa3..86abae119449 100644
--- a/users/tazjin/nixos/koptevo/default.nix
+++ b/users/tazjin/nixos/koptevo/default.nix
@@ -270,9 +270,13 @@ in
   services.nginx.virtualHosts."src.tazj.in" = {
     enableACME = true;
     forceSSL = true;
+    root = depot.third_party.radicle-explorer.withPreferredSeeds [{
+      hostname = "rad.tazj.in";
+      port = 443;
+      scheme = "https";
+    }];
 
     locations."/" = {
-      root = depot.third_party.radicle-explorer;
       index = "index.html";
       extraConfig = ''
         try_files $uri $uri/ /index.html;
@@ -283,6 +287,12 @@ in
   services.nginx.virtualHosts."src.y.tazj.in" = {
     enableSSL = true;
     useACMEHost = "y.tazj.in";
+    root = depot.third_party.radicle-explorer.withPreferredSeeds [{
+      hostname = "rad.y.tazj.in";
+      port = 443;
+      scheme = "https";
+    }];
+
     locations = config.services.nginx.virtualHosts."src.tazj.in".locations;
   };