nixos-config/lib/clanlib.nix

72 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2024-06-06 12:10:59 +02:00
{ lib, machineDir, ... }:
let
2024-06-06 12:10:59 +02:00
allMachineNames = lib.mapAttrsToList (name: _: name) (builtins.readDir machineDir);
2024-08-29 03:26:04 +02:00
getFactPath = fact: machine: "${machineDir}/${machine}/facts/${fact}";
2024-08-29 03:26:04 +02:00
readFact =
fact: machine:
let
path = getFactPath fact machine;
in
2024-08-29 03:26:04 +02:00
if builtins.pathExists path then builtins.readFile path else null;
2024-06-07 13:51:35 +02:00
# Example:
#
# readFactFromAllMachines zerotier-ip
# => {
# machineA = "1.2.3.4";
# machineB = "5.6.7.8";
# };
2024-08-29 03:26:04 +02:00
readFactFromAllMachines =
fact:
let
machines = allMachineNames;
facts = lib.genAttrs machines (readFact fact);
filteredFacts = lib.filterAttrs (_machine: fact: fact != null) facts;
in
filteredFacts;
2024-06-07 13:51:35 +02:00
# all given facts are are set and factvalues are never null.
#
# Example:
#
# readFactsFromAllMachines [ "zerotier-ip" "syncthing.pub" ]
# => {
# machineA =
# {
# "zerotier-ip" = "1.2.3.4";
# "synching.pub" = "1234";
# };
# machineB =
# {
# "zerotier-ip" = "5.6.7.8";
# "synching.pub" = "23456719";
# };
# };
2024-08-29 03:26:04 +02:00
readFactsFromAllMachines =
facts:
2024-06-07 07:54:43 +02:00
let
# machine -> fact -> factvalue
2024-08-29 03:26:04 +02:00
machinesFactsAttrs = lib.genAttrs allMachineNames (
machine: lib.genAttrs facts (fact: readFact fact machine)
);
2024-06-07 07:54:43 +02:00
# remove all machines which don't have all facts set
2024-08-29 03:26:04 +02:00
filteredMachineFactAttrs = lib.filterAttrs (
_machine: values: builtins.all (fact: values.${fact} != null) facts
) machinesFactsAttrs;
2024-06-07 07:54:43 +02:00
in
filteredMachineFactAttrs;
in
2024-08-29 03:26:04 +02:00
{
inherit
allMachineNames
getFactPath
readFact
readFactFromAllMachines
readFactsFromAllMachines
;
}