2023-05-22 15:05:20 +02:00
|
|
|
rec {
|
|
|
|
/* Fuses a list of attribute sets into a single attribute set.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
x = [ { a = 1; } { b = 2; } ]
|
|
|
|
fuseAttrs x
|
|
|
|
=> { a = 1; b = 2; }
|
|
|
|
*/
|
|
|
|
fuseAttrs = builtins.foldl' (attrs: x: attrs // x) { };
|
|
|
|
|
|
|
|
/* Maps then fuses a list of attribute sets into a single attribute set.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
x = [ "a" "b" ]
|
|
|
|
mapFuse (c: { ${c} = 42; }) x
|
|
|
|
=> { a = 42; b = 42; }
|
|
|
|
*/
|
|
|
|
mapFuse = f: attrsList: fuseAttrs (builtins.map f attrsList);
|
|
|
|
|
|
|
|
/* Equivalent of lib.singleton but for an attribute set.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
singleAttr "a" 1
|
|
|
|
=> { a = 1; }
|
|
|
|
*/
|
|
|
|
singleAttr = name: value: { ${name} = value; };
|
|
|
|
|
|
|
|
mapSingleFuse = f: mapFuse (x: singleAttr x (f x));
|
|
|
|
|
2023-06-30 18:29:56 +02:00
|
|
|
setDefault = default: mapFuse (name: { ${name} = default; });
|
|
|
|
|
2023-05-22 15:05:20 +02:00
|
|
|
/* Creates a relative path as a string
|
|
|
|
|
|
|
|
Example:
|
|
|
|
mkRel /home/test/ "file.txt"
|
|
|
|
=> "/home/test/file.txt"
|
|
|
|
*/
|
2023-05-23 11:11:27 +02:00
|
|
|
mkRel = path: file: path + "/${file}";
|
2023-05-22 15:05:20 +02:00
|
|
|
|
|
|
|
compose = f: g: (x: g (f x));
|
2023-06-30 18:29:56 +02:00
|
|
|
|
|
|
|
mkBaseSecrets = root: mapFuse (secret: { ${secret}.file = mkRel root secret; });
|
|
|
|
|
|
|
|
getSecrets = dir: builtins.attrNames (import (mkRel dir "secrets.nix"));
|
2023-05-22 15:05:20 +02:00
|
|
|
}
|