configurations for my servers and desktops
nix nixos flake dots dotfiles

feat: continuwuity

+18
+6
hosts/bluepill-proxy/modules/caddy.nix
··· 3 3 allowedTCPPorts = [ 4 4 80 5 5 443 6 + 6167 6 7 7 8 22 8 9 25565 ··· 49 50 "jellyfin.devins.page" = { 50 51 extraConfig = '' 51 52 reverse_proxy http://100.108.47.83:8096 53 + ''; 54 + }; 55 + "matrix.skywardmc.org" = { 56 + extraConfig = '' 57 + reverse_proxy http://100.108.47.83:6167 52 58 ''; 53 59 }; 54 60 };
+12
hosts/bluepill/modules/matrix.nix
··· 1 + {...}: { 2 + services.matrix-continuwuity = { 3 + enable = true; 4 + settings.global = { 5 + allow_registration = true; 6 + registration_token = "super-secret-token-i-will-change-after-register-im-devin-hi"; 7 + server_name = "skywardmc.org"; 8 + address = "0.0.0.0"; 9 + new_user_displayname_suffix = ""; 10 + }; 11 + }; 12 + }