nixos-config/nix/verify/module.nix

26 lines
521 B
Nix
Raw Normal View History

{ lib, ... }:
with lib;
with types;
{
options.verify.closed = mkOption {
default = { };
type = attrsOf (submodule {
options = {
domain = mkOption {
type = str;
description = ''
domain to scan
'';
};
2024-09-13 09:36:17 +02:00
# todo: make this an attrs so I know why port xyz should be closed.
ports = mkOption {
type = listOf int;
description = ''
ports that should be closed
'';
};
};
});
};
}