hackens-org-configurations/hosts/hackens-org/test-static.nix

8 lines
168 B
Nix
Raw Normal View History

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
}