Platform 23.11 #96

Merged
max merged 47 commits from platform-23.11 into master 2023-12-05 01:59:28 +02:00
Showing only changes of commit 93ceb5c0ea - Show all commits

View file

@ -51,7 +51,16 @@ in
};
};
dns.records = lib.genAttrs [ "www" "draw" "stop-using-nix-env" "whoami" ] (lib.const {
consulService = "static-lb";
});
dns.records = lib.mkMerge [
(lib.genAttrs [ "www" "draw" "stop-using-nix-env" "whoami" ] (lib.const {
consulService = "static-lb";
}))
{
CNAME = {
name = "@";
type = "CNAME";
target = [ "www.${domain}." ];
};
}
];
}