Files
stubbfelnix/module/news2kindle/recipe-options.nix
2018-04-01 00:02:01 +02:00

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 '';
};
};
}