{ config, pkgs, ... }:
{
services.staticWebsites.test = {
hostname = "test.${config.my.subZone}";
root = pkgs.writeTextDir "index.html" "Hello world!";
};
}