nix-config/modules/data-hoarder/click.nix

14 lines
282 B
Nix
Raw Normal View History

2022-07-13 19:50:19 +02:00
{ pkgs, config, ... }: {
services.nginx = {
enable = true;
virtualHosts."click.${config.dump-dvb.domain}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
root = "${pkgs.click}/web/";
index = "index.html";
};
};
};
}