Files
develnix/module/news2kindle2/recipe-options.nix
2018-11-20 23:23:23 +01: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 '';
};
};
}