fruitbasket/modules/web/notenrechner.nix

10 lines
260 B
Nix
Raw Normal View History

2025-01-30 13:10:44 +01:00
{ config, specialArgs, ... }: let
domain = "notenrechner.${config.networking.domain}";
in {
services.nginx.virtualHosts."${domain}" = {
forceSSL = true;
enableACME = true;
root = specialArgs.notenrechner.packages."x86_64-linux".default;
};
}