feat(hakurei): new ct

This commit is contained in:
arcnmx 2024-01-19 11:09:44 -08:00
parent 3e277a645f
commit aaa372bced
18 changed files with 491 additions and 286 deletions

View file

@ -95,7 +95,7 @@ in {
displayName = "flake update build";
environment = ["CACHIX_SIGNING_KEY" "GITHUB_REF"];
command = let
filteredHosts = [ "tewi" "tei" "mediabox" ];
filteredHosts = [ "hakurei" "tei" "mediabox" ];
gcBetweenHosts = false;
nodeBuildString = concatMapStringsSep " && " (node: "nix build -Lf . network.nodes.${node}.system.build.toplevel -o result-${node}" + optionalString gcBetweenHosts " && nix-collect-garbage -d") filteredHosts;
in ''

View file

@ -59,7 +59,7 @@ with lib; {
};
jobs = let
enabledHosts = ["tewi" "tei" "mediabox" "reisen-ct"];
enabledHosts = ["hakurei" "tei" "mediabox" "reisen-ct"];
in
mapAttrs' (k: nameValuePair "${k}") (genAttrs enabledHosts (host: {
tasks.${host}.inputs = channels.nixfiles.network.nodes.${host}.system.build.toplevel;