Files
nix-config/modules/factory/flake-option.nix
T
2026-03-15 15:04:47 +01:00

7 lines
135 B
Nix

{ lib, ... }: {
options.flake.factory = lib.mkOption {
type = lib.types.attrsOf lib.types.unspecified;
default = { };
};
}