mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
14 lines
281 B
Nix
14 lines
281 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;
|
|
};
|
|
}
|