fruitbasket/modules/web/infoscreen.nix

13 lines
219 B
Nix
Raw Normal View History

2024-03-11 22:49:12 +01:00
{ config, ... }:
let
domain = "infoscreen.${config.networking.domain}";
in
{
services.nginx = {
enable = true;
virtualHosts."${domain}" = {
root = "/srv/web/infoscreen/dist";
};
};
}