18 lines
272 B
Nix
Raw Normal View History

2017-02-26 10:52:30 +08:00
{ lib }:
{
options = with lib; with types; {
command = mkOption {
default = "";
description = "Command for mutator.";
type = str;
};
timeout = mkOption {
default = 30;
description = "Timeout.";
type = int;
};
};
}