hackens-org-configurations/hosts/hackens-org/test-static.nix
2022-03-31 11:50:41 +02:00

7 lines
162 B
Nix

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