18 lines
409 B
Nix
18 lines
409 B
Nix
{ 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 '';
|
|
};
|
|
};
|
|
}
|