{ ... }: { imports = [ ../../modules/common.nix ./hardware.nix ./devices.nix ../../modules/www.nix ]; services.nginx = { "sho.rest" = { enableACME = true; forceSSL = true; locations."/" = { proxyPass = "http://127.0.0.1:5000"; }; }; "mel.gg" = { enableACME = true; forceSSL = true; root = "/srv/mel"; }; "git.rnrd.eu" = { enableACME = true; forceSSL = true; locations = { "/" = { proxyPass = "http://127.0.0.1:3792"; }; "/static/" = { alias = "/srv/cgit/static/"; }; }; }; }; system.stateVersion = "24.05"; }