{ config, lib, pkgs, inputs, ... }: { systemd.services.walint = { enable = true; description = "test instance for walint & divoc"; wantedBy = [ "multi-user.target" ]; serviceConfig.Type = "simple"; path = [ pkgs.git ]; script = '' cd ${(import inputs.walint).walint-server} ./bin/walint-server ''; }; services.nginx.virtualHosts."walint.stuebinm.eu" = { locations."/".proxyPass = "http://localhost:8080"; enableACME = true; forceSSL = true; }; }