Sites statique #5

Open
sinavir wants to merge 12 commits from static_website into master
Showing only changes of commit 409b515df3 - Show all commits

View file

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