infra/dns/nextdns.nix

59 lines
925 B
Nix
Raw Normal View History

{lib, ...}: let
tailscale =
lib.lists.forEach [
"authentik"
"ibiza"
"matrix"
"photos"
"proxmox"
"pw"
"tokyo"
"nitter"
2024-05-19 01:09:41 +01:00
"paste"
"e6"
"minecraft-invites"
] (name: {
name = name + ".gmem.ca";
2024-05-04 15:28:48 +01:00
content = "newcluster.gmem.ca";
});
home =
lib.lists.forEach [
"git"
"authentik"
"games"
"ibiza"
"matrix"
"photos"
"proxmox"
"pw"
"tokyo"
"nitter"
"atuin"
"dref"
"freshrss"
"hb"
"home"
"hue"
"netboot"
"pipedapi"
"piped"
"request-media"
"tools"
"ytproxy"
2024-05-19 01:09:41 +01:00
"metube"
"search"
"paste"
"e6"
"red"
"minecraft-invites"
] (name: {
name = name + ".gmem.ca";
content = "homelab.gmem.ca";
});
in {
data = {
"bcee89" = home;
"74c6db" = tailscale;
};
}