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