infrastructure/modules/nixos/katnet/default.nix
2021-04-27 22:33:49 +01:00

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;
};
};
}