hackens-org-configurations/hosts/hackens-org/test-static.nix
2022-03-31 09:58:42 +00:00

7 lines
168 B
Nix

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