feat: figured out how to share types across files

This commit is contained in:
silver 2024-03-11 23:14:29 +00:00
parent 106485a754
commit ed43da872c
3 changed files with 29 additions and 41 deletions

19
_types/dns_object.nix Normal file
View 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;
};
};
}

View file

@ -316,28 +316,11 @@ in {
}; };
}; };
# mirrorred in ../config/dns.nix
records = lib.mkOption { records = lib.mkOption {
description = "Records, sorted based on therir type"; description = "Records, sorted based on therir type";
type = with lib.types; type = lib.types.listOf (lib.types.submodule (import ../_types/dns_object.nix {
listOf (submodule { inherit lib;
options = { }));
record = lib.mkOption {
type = str;
};
r_type = lib.mkOption {
type = enum ["A" "CNAME" "TXT" "PTR" "SRV" "MX"];
};
value = lib.mkOption {
type = str;
};
server = lib.mkOption {
description = "Core record for a server";
type = bool;
default = false;
};
};
});
}; };
}; };
}; };

View file

@ -5,27 +5,13 @@
]; ];
# this needs to mirror ../applications/dns.nix # this needs to mirror ../applications/dns.nix
options.skynet.records = lib.mkOption { options.skynet = {
description = "Records, sorted based on therir type"; records = lib.mkOption {
type = with lib.types; description = "Records, sorted based on therir type";
listOf (submodule { type = lib.types.listOf (lib.types.submodule (import ../_types/dns_object.nix {
options = { inherit lib;
record = lib.mkOption { }));
type = str; };
};
r_type = lib.mkOption {
type = enum ["A" "CNAME" "TXT" "PTR" "SRV" "MX"];
};
value = lib.mkOption {
type = str;
};
server = lib.mkOption {
description = "Core record for a server";
type = bool;
default = false;
};
};
});
}; };
config = { config = {