nixos/config/dns.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

{lib, ...}: {
imports = [
# Paths to other modules.
# Compose this module out of smaller ones.
];
# this needs to mirror ../applications/dns.nix
options.skynet.records = lib.mkOption {
description = "Records, sorted based on therir type";
type = with lib.types;
listOf (submodule {
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;
};
};
});
};
config = {
skynet.records = [
2024-01-27 20:42:19 +00:00
{
2024-01-27 20:43:02 +00:00
record = "optimus-reborn";
2024-01-27 20:42:19 +00:00
r_type = "A";
value = "193.1.99.90";
server = true;
2024-01-27 20:57:58 +00:00
}
2024-01-27 20:42:19 +00:00
{
record = "panel.games";
r_type = "CNAME";
2024-01-27 20:44:36 +00:00
value = "optimus-reborn";
2024-01-27 20:42:19 +00:00
}
2024-02-16 00:08:57 +00:00
{
record = "bumblebee";
r_type = "A";
value = "193.1.99.91";
server = true;
}
{
record = "minecraft.compsoc.games";
r_type = "CNAME";
value = "bumblebee";
}
{
record = "_minecraft._tcp.minecraft.compsoc.games";
r_type = "SRV";
value = "0 10 25518 bumblebee.skynet.ie";
}
];
};
}