mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
25 lines
528 B
Nix
25 lines
528 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
variables.phone_ygg = {
|
|
type = "string";
|
|
value.shellCommand = "bitw get infra/phone-ygg";
|
|
};
|
|
|
|
dns.records.kittywitch_net_grimoire = {
|
|
tld = "kittywit.ch.";
|
|
domain = "grimoire.net";
|
|
aaaa.address = config.variables.phone_ygg.ref;
|
|
};
|
|
|
|
variables.pi_ygg = {
|
|
type = "string";
|
|
value.shellCommand = "bitw get infra/pi-ygg";
|
|
};
|
|
|
|
dns.records.kittywitch_net_boline = {
|
|
tld = "kittywit.ch.";
|
|
domain = "boline.net";
|
|
aaaa.address = config.variables.pi_ygg.ref;
|
|
};
|
|
}
|