13 lines
212 B
Nix
13 lines
212 B
Nix
|
with import <stockholm/lib>;
|
||
|
{
|
||
|
options = {
|
||
|
krebs.dns.providers = mkOption {
|
||
|
type = types.attrsOf types.str;
|
||
|
};
|
||
|
|
||
|
krebs.dns.search-domain = mkOption {
|
||
|
type = types.hostname;
|
||
|
};
|
||
|
};
|
||
|
}
|