2024-07-29 01:11:32 +02:00
|
|
|
{ lib, config, self, ... }:
|
|
|
|
|
|
|
|
{
|
2024-08-04 01:52:04 +02:00
|
|
|
imports = [
|
|
|
|
./things.nix
|
|
|
|
];
|
|
|
|
|
2024-07-29 01:11:32 +02:00
|
|
|
options = let
|
|
|
|
inherit (lib) types;
|
|
|
|
in {
|
|
|
|
lib = lib.mkOption {
|
|
|
|
type = types.unspecified;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config.lib = rec {
|
|
|
|
# Boolean helpers
|
|
|
|
and = lib.all lib.id;
|
|
|
|
or = lib.any lib.id;
|
|
|
|
eq = x: y: x == y;
|
|
|
|
|
|
|
|
# Directory walking helpers
|
|
|
|
recurseDir = dir:
|
|
|
|
lib.mapAttrs
|
|
|
|
(file: type:
|
|
|
|
if type == "directory"
|
|
|
|
then recurseDir "${dir}/${file}"
|
|
|
|
else type)
|
|
|
|
(builtins.readDir dir);
|
|
|
|
|
|
|
|
allSatisfy = predicate: attrs: attrset:
|
|
|
|
lib.all
|
|
|
|
(attr:
|
|
|
|
and [
|
|
|
|
(builtins.hasAttr attr attrset)
|
|
|
|
(predicate (builtins.getAttr attr attrset))
|
|
|
|
])
|
|
|
|
attrs;
|
|
|
|
|
|
|
|
# NOTE: Implying last argument is the output of `recurseDir`
|
|
|
|
hasFiles = allSatisfy (eq "regular");
|
|
|
|
|
|
|
|
# NOTE: Implying last argument is the output of `recurseDir`
|
|
|
|
hasDirectories = allSatisfy lib.isAttrs;
|
|
|
|
|
|
|
|
camelToKebab =
|
|
|
|
lib.stringAsChars
|
|
|
|
(c: if c == lib.toUpper c then "-${lib.toLower c}" else c);
|
|
|
|
|
|
|
|
# NOTE: adapted from Tweag's Nix Hour 76 - <https://github.com/tweag/nix-hour/blob/c4fd0f2fc3059f057571bbfd74f3c5e4021f526c/code/76/default.nix#L4-L22>
|
|
|
|
mutFirstChar =
|
|
|
|
f: s:
|
|
|
|
let
|
|
|
|
firstChar = f (lib.substring 0 1 s);
|
|
|
|
rest = lib.substring 1 (-1) s;
|
|
|
|
in firstChar + rest;
|
|
|
|
|
|
|
|
kebabToCamel = lib.flip lib.pipe [
|
|
|
|
(lib.splitString "-")
|
|
|
|
(lib.concatMapStrings
|
|
|
|
(mutFirstChar lib.toUpper))
|
|
|
|
(mutFirstChar lib.toLower)
|
|
|
|
];
|
|
|
|
# s:
|
|
|
|
# mutFirstChar
|
|
|
|
# lib.toLower
|
|
|
|
# (lib.concatMapStrings
|
|
|
|
# (mutFirstChar lib.toUpper)
|
|
|
|
# (lib.splitString "-" s));
|
|
|
|
|
|
|
|
gen-configuration-type-to = mappings: mkError: configuration-type:
|
|
|
|
mappings.${configuration-type} or
|
|
|
|
(builtins.throw
|
|
|
|
(mkError configuration-type));
|
|
|
|
|
|
|
|
# TODO: abstract away `_Hosts` and `_Modules`
|
|
|
|
|
|
|
|
configuration-type-to-outputs-hosts =
|
|
|
|
gen-configuration-type-to
|
|
|
|
{
|
|
|
|
nixos = "nixosHosts";
|
|
|
|
nix-on-droid = "nixOnDroidHosts";
|
|
|
|
nix-darwin = "darwinHosts";
|
|
|
|
home-manager = "homeManagerHosts";
|
|
|
|
}
|
|
|
|
(configuration-type:
|
|
|
|
builtins.throw
|
|
|
|
"Invaild configuration-type \"${configuration-type}\" for flake outputs' hosts");
|
|
|
|
|
|
|
|
configuration-type-to-outputs-modules =
|
|
|
|
gen-configuration-type-to
|
|
|
|
{
|
|
|
|
nixos = "nixosModules";
|
|
|
|
nix-on-droid = "nixOnDroidModules";
|
|
|
|
nix-darwin = "darwinModules";
|
|
|
|
home-manager = "homeManagerModules";
|
|
|
|
flake = "flakeModules";
|
|
|
|
}
|
|
|
|
(configuration-type:
|
|
|
|
builtins.throw
|
|
|
|
"Invaild configuration-type \"${configuration-type}\" for flake outputs' modules");
|
|
|
|
|
|
|
|
configuration-type-to-outputs-configurations =
|
|
|
|
gen-configuration-type-to
|
|
|
|
{
|
|
|
|
nixos = "nixosConfigurations";
|
|
|
|
nix-on-droid = "nixOnDroidConfigurations";
|
|
|
|
nix-darwin = "darwinConfigurations";
|
|
|
|
home-manager = "homeConfigurations";
|
|
|
|
}
|
|
|
|
(configuration-type:
|
|
|
|
builtins.throw
|
|
|
|
"Invaild configuration-type \"${configuration-type}\" for flake outputs' configurations");
|
|
|
|
|
|
|
|
configuration-type-to-deploy-type =
|
|
|
|
gen-configuration-type-to
|
|
|
|
{
|
|
|
|
nixos = "nixos";
|
|
|
|
nix-darwin = "darwin";
|
|
|
|
}
|
|
|
|
(configuration-type:
|
|
|
|
builtins.throw
|
|
|
|
"Invaild configuration-type \"${configuration-type}\" for deploy-rs deployment");
|
|
|
|
};
|
|
|
|
}
|