types: add zones
This commit is contained in:
parent
4d08db7462
commit
6b9a70d2d0
@ -20,6 +20,7 @@ types // rec {
|
|||||||
type = attrsOf net;
|
type = attrsOf net;
|
||||||
apply = x: assert hasAttr "retiolum" x; x;
|
apply = x: assert hasAttr "retiolum" x; x;
|
||||||
};
|
};
|
||||||
|
|
||||||
secure = mkOption {
|
secure = mkOption {
|
||||||
type = bool;
|
type = bool;
|
||||||
default = false;
|
default = false;
|
||||||
@ -73,6 +74,11 @@ types // rec {
|
|||||||
}));
|
}));
|
||||||
default = null;
|
default = null;
|
||||||
};
|
};
|
||||||
|
zones = mkOption {
|
||||||
|
default = [];
|
||||||
|
# TODO: string is either MX, NS, A or AAAA
|
||||||
|
type = with types; listOf (attrsOf str);
|
||||||
|
};
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user