mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
32 lines
1 KiB
Nix
32 lines
1 KiB
Nix
{ lib, channels, env, ... }: with lib; {
|
|
name = "hosts";
|
|
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 hostnames = [ "samhain" "yule" "athame" ];
|
|
in mapAttrs' (k: nameValuePair "host-${k}") (genAttrs hostnames (host: {
|
|
tasks.${host}.inputs = channels.nixfiles.hosts.${host}.config.system.build.toplevel;
|
|
}));
|
|
|
|
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";
|
|
};
|
|
}
|