mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ lib, channels, env, ... }: with lib; {
|
|
name = "nodes";
|
|
ci.gh-actions.enable = true;
|
|
ci.gh-actions.export = true;
|
|
channels.nixfiles.path = ../.;
|
|
|
|
# ensure sources are fetched and available in the local store before evaluating host configs
|
|
environment.bootstrap = {
|
|
sourceCache = channels.cipkgs.runCommand "sources"
|
|
{
|
|
srcs = attrNames channels.nixfiles.sourceCache.local;
|
|
} ''
|
|
mkdir -p $out/share/sources
|
|
ln -s $srcs $out/share/sources/
|
|
'';
|
|
};
|
|
|
|
jobs =
|
|
let
|
|
main = (import ../.);
|
|
hosts = main.network.nodes;
|
|
targets = main.deploy.targets;
|
|
enabledTargets = filterAttrs (_: v: v.enable) main.deploy.targets;
|
|
enabledHosts = concatLists (mapAttrsToList (targetName: target: target.nodeNames) enabledTargets);
|
|
in
|
|
mapAttrs' (k: nameValuePair "${k}") (genAttrs enabledHosts (host: {
|
|
tasks.${host}.inputs = channels.nixfiles.network.nodes.${host}.deploy.system;
|
|
}));
|
|
|
|
ci.gh-actions.checkoutOptions.submodules = false;
|
|
cache.cachix.arc = {
|
|
enable = true;
|
|
publicKey = "arc.cachix.org-1:DZmhclLkB6UO0rc0rBzNpwFbbaeLfyn+fYccuAy7YVY=";
|
|
};
|
|
cache.cachix.kittywitch = {
|
|
enable = true;
|
|
publicKey = "kittywitch.cachix.org-1:KIzX/G5cuPw5WgrXad6UnrRZ8UDr7jhXzRTK/lmqyK0=";
|
|
signingKey = "mewp";
|
|
};
|
|
}
|