diff --git a/hosts/hackens-org/test-static.nix b/hosts/hackens-org/test-static.nix index 8a0094a..f3146d6 100644 --- a/hosts/hackens-org/test-static.nix +++ b/hosts/hackens-org/test-static.nix @@ -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!"; + }; }