Platform 23.11 #96

Merged
max merged 47 commits from platform-23.11 into master 2023-12-05 01:59:28 +02:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit a09b8ff7c5 - Show all commits

View file

@ -7,6 +7,7 @@ in
{ {
imports = [ imports = [
./options.nix ./options.nix
./nodes.nix
]; ];
links = { links = {

View file

@ -0,0 +1,11 @@
{ depot, lib, ... }:
{
dns.records = lib.mapAttrs' (name: hour: {
name = lib.toLower "${name}.${hour.enterprise.subdomain}";
value = {
type = "A";
target = [ hour.interfaces.primary.addrPublic ];
};
}) depot.gods.fromLight;
}