build: export nixos module and overlay
1 file changed, 3 insertions(+), 1 deletion(-)
changed files
M nix/modules/source-options.nix → nix/modules/source-options.nix
@@ -1,9 +1,11 @@ -{ cfg }: +{ cfg, settingsFormat }: { config, lib, name, ... }: let inherit (lib) literalExpression mkOption mkEnableOption types; in { + freeformType = settingsFormat.type; + options = { key = mkOption { type = types.strMatching "[a-z0-9_-]*";