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