diff options
Diffstat (limited to 'ops/nixos.nix')
-rw-r--r-- | ops/nixos.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ops/nixos.nix b/ops/nixos.nix index 309f12297744..147a016efc00 100644 --- a/ops/nixos.nix +++ b/ops/nixos.nix @@ -59,5 +59,6 @@ in rec { # Systems that should be built in CI whitbySystem = (nixosFor depot.ops.machines.whitby).system; sandunySystem = (nixosFor depot.ops.machines.sanduny).system; - meta.ci.targets = [ "sandunySystem" "whitbySystem" ]; + nixeryDev01System = (nixosFor depot.ops.machines.nixery-01).system; + meta.ci.targets = [ "sandunySystem" "whitbySystem" "nixeryDev01System" ]; } |