about summary refs log tree commit diff
path: root/ops/nixos.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-02-16T23·02+0300
committertazjin <tazjin@tvl.su>2022-02-17T18·11+0000
commit9e9284fc8638b3750074177a8c1122ae59df0b55 (patch)
treef50e55098244ef47f4ece0ffe143b01d0c356269 /ops/nixos.nix
parentdd5ce78dbdf88bcdafc46c7e77fc58b1973ba617 (diff)
feat(ops/machines): add configuration for sanduny.tvl.su r/3839
This will be an additional web host / fallback git server for whitby
incidents.

Change-Id: Icd6f7ce574ffd520b5783a50ff317feed7b71fc6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5297
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'ops/nixos.nix')
-rw-r--r--ops/nixos.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/ops/nixos.nix b/ops/nixos.nix
index 3a113ac4bb..291413c5b5 100644
--- a/ops/nixos.nix
+++ b/ops/nixos.nix
@@ -50,5 +50,6 @@ in rec {
 
   # Systems that should be built in CI
   whitbySystem = (nixosFor depot.ops.machines.whitby).system;
-  meta.ci.targets = [ "whitbySystem" ];
+  sandunySystem = (nixosFor depot.ops.machines.sanduny).system;
+  meta.ci.targets = [ "sandunySystem" "whitbySystem" ];
 }