{ config, lib }: with lib; { options = { name = mkOption { type = types.str; default = null; description = '' name of recipe ''; }; content = mkOption { type = types.nullOr types.str; default = null; description = '' content of the recipe file, when its null the use the builtins recipes ''; }; }; }