nixos/config/dns.nix

84 lines
2.1 KiB
Nix
Raw Normal View History

{lib, ...}: {
imports = [
];
options.skynet.records = lib.mkOption {
description = "Records, sorted based on therir type";
2024-07-16 21:31:28 +00:00
type = lib.types.listOf (lib.types.submodule (import ../applications/dns/options-records.nix {
inherit lib;
}));
};
config = {
skynet.records = [
2024-01-27 20:42:19 +00:00
{
record = "optimus";
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";
value = "optimus";
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;
}
{
2024-02-16 00:08:57 +00:00
record = "minecraft.compsoc.games";
r_type = "CNAME";
value = "bumblebee";
}
{
2024-02-16 13:12:32 +00:00
record = "_minecraft._tcp.minecraft.compsoc.games.skynet.ie.";
2024-02-16 00:08:57 +00:00
r_type = "SRV";
2024-02-16 12:40:43 +00:00
value = "0 10 25518 minecraft.compsoc.games.skynet.ie.";
2024-02-16 00:08:57 +00:00
}
{
record = "minecraft-classic.compsoc.games";
r_type = "CNAME";
value = "bumblebee";
}
{
record = "_minecraft._tcp.minecraft-classic.compsoc.games.skynet.ie.";
r_type = "SRV";
2024-06-18 22:50:28 +00:00
value = "0 10 25518 minecraft-classic.compsoc.games.skynet.ie.";
}
{
record = "minecraft.gsoc.games";
r_type = "CNAME";
value = "bumblebee";
}
{
record = "_minecraft._tcp.minecraft.gsoc.games.skynet.ie.";
r_type = "SRV";
value = "0 10 25521 minecraft.gsoc.games.skynet.ie.";
}
{
record = "minecraft.phildeb.games";
r_type = "CNAME";
value = "bumblebee";
}
{
record = "_minecraft._tcp.minecraft.phildeb.games.skynet.ie.";
r_type = "SRV";
value = "0 10 25522 minecraft.phildeb.games.skynet.ie.";
}
{
record = "minecraft-aged.compsoc.games";
r_type = "CNAME";
value = "bumblebee";
}
{
record = "_minecraft._tcp.minecraft-aged.compsoc.games.skynet.ie.";
r_type = "SRV";
value = "0 10 25519 minecraft.phildeb.games.skynet.ie.";
}
];
};
}