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

8 lines
169 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-04-03 01:27:30 +02:00
services.staticWebsites.test = {
2022-03-31 11:50:41 +02:00
hostname = "test.${config.my.subZone}";
root = pkgs.writeTextDir "index.html" "Hello world!";
};
2022-03-31 09:36:51 +02:00
}