2017-10-14 14:38:04 +08:00

18 lines
272 B
Nix

{ lib }:
{
options = with lib; with types; {
command = mkOption {
default = "";
description = "Command for mutator.";
type = str;
};
timeout = mkOption {
default = 30;
description = "Timeout.";
type = int;
};
};
}