mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 14:50:40 +02:00
111 lines
2.2 KiB
Nix
111 lines
2.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
nodes,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib)
|
|
attrNames
|
|
concatMap
|
|
concatStringsSep
|
|
foldl'
|
|
getAttrFromPath
|
|
mkMerge
|
|
mkOption
|
|
mkOptionType
|
|
optionals
|
|
recursiveUpdate
|
|
setAttrByPath
|
|
types
|
|
;
|
|
|
|
nodeName = config.node.name;
|
|
mkForwardedOption =
|
|
path:
|
|
mkOption {
|
|
type = mkOptionType {
|
|
name = "Same type that the receiving option `${concatStringsSep "." path}` normally accepts.";
|
|
merge =
|
|
_loc: defs:
|
|
builtins.filter (x: builtins.isAttrs x -> ((x._type or "") != "__distributed_config_empty")) (
|
|
map (x: x.value) defs
|
|
);
|
|
};
|
|
default = {
|
|
_type = "__distributed_config_empty";
|
|
};
|
|
description = ''
|
|
Anything specified here will be forwarded to `${concatStringsSep "." path}`
|
|
on the given node. Forwarding happens as-is to the raw values,
|
|
so validity can only be checked on the receiving node.
|
|
'';
|
|
};
|
|
|
|
forwardedOptions = [
|
|
[
|
|
"age"
|
|
"secrets"
|
|
]
|
|
[
|
|
"networking"
|
|
"nftables"
|
|
"chains"
|
|
]
|
|
[
|
|
"services"
|
|
"nginx"
|
|
"upstreams"
|
|
]
|
|
[
|
|
"services"
|
|
"nginx"
|
|
"virtualHosts"
|
|
]
|
|
[
|
|
"services"
|
|
"influxdb2"
|
|
"provision"
|
|
"organizations"
|
|
]
|
|
[
|
|
"services"
|
|
"kanidm"
|
|
"provision"
|
|
"groups"
|
|
]
|
|
[
|
|
"services"
|
|
"kanidm"
|
|
"provision"
|
|
"systems"
|
|
"oauth2"
|
|
]
|
|
];
|
|
|
|
attrsForEachOption =
|
|
f: foldl' (acc: path: recursiveUpdate acc (setAttrByPath path (f path))) { } forwardedOptions;
|
|
in
|
|
{
|
|
options.nodes = mkOption {
|
|
description = "Options forwarded to the given node.";
|
|
default = { };
|
|
type = types.attrsOf (
|
|
types.submodule {
|
|
options = attrsForEachOption mkForwardedOption;
|
|
}
|
|
);
|
|
};
|
|
|
|
config =
|
|
let
|
|
getConfig =
|
|
path: otherNode:
|
|
let
|
|
cfg = nodes.${otherNode}.config.nodes.${nodeName} or null;
|
|
in
|
|
optionals (cfg != null) (getAttrFromPath path cfg);
|
|
mergeConfigFromOthers = path: mkMerge (concatMap (getConfig path) (attrNames nodes));
|
|
in
|
|
attrsForEachOption mergeConfigFromOthers;
|
|
}
|