feat: figured out how to share types across files
This commit is contained in:
parent
106485a754
commit
ed43da872c
3 changed files with 29 additions and 41 deletions
19
_types/dns_object.nix
Normal file
19
_types/dns_object.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{lib, ...}:
|
||||
with lib; {
|
||||
options = {
|
||||
record = mkOption {
|
||||
type = types.str;
|
||||
};
|
||||
r_type = mkOption {
|
||||
type = types.enum ["A" "CNAME" "TXT" "PTR" "SRV" "MX"];
|
||||
};
|
||||
value = mkOption {
|
||||
type = types.str;
|
||||
};
|
||||
server = mkOption {
|
||||
description = "Core record for a server";
|
||||
type = types.bool;
|
||||
default = false;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue