rix101/modules/flake/overlays/default.nix
reo101 7956cfd20a
refactor(flake)!: flake.autoStuff -> auto.stuff
Avoids infinite recursion in `auto.configurations` and `auto.modules`
Can now fully dynamically define `configuration` and `module` types
2024-09-01 04:29:32 +03:00

65 lines
1.5 KiB
Nix

{ lib, config, self, inputs, ... }:
let
inherit (config.lib)
createThings;
in
let
createOverlays = baseDir:
createThings {
inherit baseDir;
thingType = "overlay";
};
in
{
options = let
inherit (lib) types;
in {
auto.overlays = lib.mkOption {
description = ''
Automagically generate overlays from walking directories with Nix files
'';
type = types.submodule (submodule: {
options = {
enable = lib.mkEnableOption "Automatic overlays extraction";
dir = lib.mkOption {
description = ''
Base directory of the contained overlays
'';
type = types.path;
default = "${self}/overlays";
defaultText = ''''${self}/overlays'';
};
result = lib.mkOption {
description = ''
The resulting automatic overlays
'';
type = types.attrsOf types.unspecified;
readOnly = true;
internal = true;
default =
lib.optionalAttrs
config.auto.overlays.enable
(createOverlays config.auto.overlays.dir);
};
};
});
default = {};
};
};
config = {
flake = let
overlays =
lib.pipe
config.auto.overlays.result
[
(lib.mapAttrs
(name: overlay:
overlay))
];
in {
inherit overlays;
};
};
}