Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
7 lines
135 B
Nix
7 lines
135 B
Nix
{ lib, ... }: {
|
|
options.flake.factory = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.unspecified;
|
|
default = { };
|
|
};
|
|
}
|