mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
13 lines
321 B
Nix
13 lines
321 B
Nix
{ config, hosts, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = mkIf config.hexchen.network.enable {
|
|
deploy.tf.dns.records."kittywitch_net_${config.networking.hostName}" = {
|
|
tld = "kittywit.ch.";
|
|
domain = "${config.networking.hostName}.net";
|
|
aaaa.address = config.hexchen.network.address;
|
|
};
|
|
};
|
|
}
|