...Everything can be a specialArg. Anything can be hidden in trusted.

This commit is contained in:
kat witch 2021-08-07 01:04:37 +01:00
parent 3c9475cdcf
commit 361216c859
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
5 changed files with 67 additions and 35 deletions

View file

@ -1,49 +1,73 @@
let
# Sources are from niv.
sources = import ./nix/sources.nix;
# We pass sources through to pkgs and get our nixpkgs + overlays.
pkgs = import ./pkgs { inherit sources; };
# We want our overlaid lib.
inherit (pkgs) lib;
sourceCache = import ./cache.nix {
inherit sources lib;
};
publicServices = lib.modList {
modulesDir = ./config/services;
};
privateServices-base = lib.mkIf (builtins.pathExists ./config/trusted/services) (lib.modList {
modulesDir = ./config/trusted/services;
});
privateServices = privateServices-base.content;
services = lib.modListMerge publicServices privateServices;
profiles = lib.modList {
modulesDir = ./config/profiles;
};
targets = lib.removeAttrs (lib.modList {
modulesDir = ./config/targets;
}) ["common"];
users = lib.modList {
modulesDir = ./config/users;
# This is used for caching niv sources in CI.
sourceCache = import ./cache.nix { inherit sources lib; };
/*
This is used to generate specialArgs + the like. It works as such:
* A <argGenName> can exist at config/<argGenName>.
* A <argGenName> can exist at config/trusted/<argGenName>.
If only one exists, the path for that one is returned.
Otherwise a module is generated which contains both import paths.
*/
argGenNames = [ "profiles" "users" "targets" "services" ];
argGen = lib.mapListToAttrs (folder: lib.nameValuePair folder (lib.domainMerge { inherit folder; })) argGenNames;
/*
This produces an attrSet of hosts based upon:
* hosts being located within config/hosts/<hostname>/
*/
hosts = lib.domainMerge {
folder = "hosts";
defaultFile = "meta.nix";
};
/*
We use this to make the meta runner use this file and to use `--show-trace` on nix-builds.
We also pass through pkgs to meta this way.
*/
metaConfig = import ./meta-base.nix {
inherit pkgs lib;
};
hostNames = [
"dummy"
"athame"
"beltane"
"samhain"
"yule"
# "mabon"
# "ostara"
];
# This is where the meta config is evaluated.
eval = lib.evalModules {
modules = [
metaConfig
targets.personal
targets.infra
argGen.targets.personal
argGen.targets.infra
hosts.dummy
hosts.athame
hosts.beltane
hosts.samhain
hosts.yule
./config/modules/meta/default.nix
] ++ map (hostName: ./config/hosts + "/${hostName}/meta.nix") hostNames;
] ++ (lib.optional (builtins.pathExists ./config/trusted/meta.nix) ./config/trusted/meta.nix);
specialArgs = {
inherit sources profiles users services;
inherit sources;
inherit (argGen) profiles users services;
};
};
# The evaluated meta config.
inherit (eval) config;
in config // { inherit pkgs sourceCache sources; }
/*
Please note all specialArg generated specifications use the folder common to both import paths.
Those import paths are as mentioned above next to `argGenNames`.
This provides us with a ./. that contains (most relevantly):
* deploy.targets -> a mapping of target name to host names
* network.nodes -> host names to host NixOS + home-manager configs
* profiles -> the specialArg generated from profiles/
* users -> the specialArg generated from users/
* targets -> the specialArg generated from targets/
* do not use common, it is tf-nix specific config ingested at line 66 of config/modules/meta/deploy.nix for every target.
* services -> the specialArg generated from services/
*/
in config // { inherit pkgs hosts sourceCache sources; } // argGen