nix-config/modules/map.nix
2022-05-02 12:46:29 +02:00

19 lines
368 B
Nix

{ pkgs, config, lib, ... }: {
services = {
nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"map.dvb.solutions" = {
enableACME = true;
locations = {
"/" = {
index = "${pkgs.windshield}/bin/index.html";
};
};
};
};
};
};
}