{ me, pkgs, lib, ... }: { imports = [ ../../modules/common.nix ./hardware.nix ./devices.nix ../../modules/www.nix ../../services/akkoma ]; services.nginx.virtualHosts = { "soc.rnrd.eu" = { forceSSL = true; enableACME = true; locations."/" = { proxyWebsockets = true; proxyPass = "http://127.0.0.1:1111"; }; }; "matrix.rnrd.eu" = { forceSSL = true; enableACME = true; locations."/_matrix" = { proxyPass = "http://127.0.0.1:8008"; }; }; }; system.stateVersion = "23.05"; }