25 lines
445 B
Nix
25 lines
445 B
Nix
|
{ lib, ... }:
|
||
|
with lib;
|
||
|
with types;
|
||
|
{
|
||
|
options.verify.closed = mkOption {
|
||
|
default = { };
|
||
|
type = attrsOf (submodule {
|
||
|
options = {
|
||
|
domain = mkOption {
|
||
|
type = str;
|
||
|
description = ''
|
||
|
domain to scan
|
||
|
'';
|
||
|
};
|
||
|
ports = mkOption {
|
||
|
type = listOf int;
|
||
|
description = ''
|
||
|
ports that should be closed
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
});
|
||
|
};
|
||
|
}
|