2022-03-31 11:58:42 +02:00
|
|
|
{ config, pkgs, ... }:
|
2022-03-31 09:36:51 +02:00
|
|
|
{
|
2022-03-31 11:50:41 +02:00
|
|
|
services.staticWebsite.test = {
|
|
|
|
hostname = "test.${config.my.subZone}";
|
|
|
|
root = pkgs.writeTextDir "index.html" "Hello world!";
|
|
|
|
};
|
2022-03-31 09:36:51 +02:00
|
|
|
}
|