2025-01-01 02:02:00 -05:00
|
|
|
{ config, lib, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2024-11-04 22:41:38 -05:00
|
|
|
imports = [ ./nginx ];
|
2024-10-07 11:42:34 -04:00
|
|
|
|
2025-01-01 02:02:00 -05:00
|
|
|
config = lib.mkIf config.services.matrix-synapse.enable {
|
|
|
|
nixpkgs.config.element-web.conf = {
|
|
|
|
default_server_config."m.homeserver" = {
|
2025-02-25 03:03:43 -05:00
|
|
|
base_url = "https://matrix.jimbosfiles.com";
|
|
|
|
server_name = "matrix.jimbosfiles.com";
|
2025-01-01 02:02:00 -05:00
|
|
|
};
|
|
|
|
branding = {
|
2025-02-25 03:03:43 -05:00
|
|
|
#welcome_background_url = "https://staging.jimbosfiles.com/images/backgrounds/template-background.png";
|
|
|
|
#auth_header_logo_url = "https://staging.jimbosfiles.com/images/logos/template-logo.png";
|
2025-01-01 02:02:00 -05:00
|
|
|
};
|
|
|
|
embedded_pages = {
|
2025-03-04 13:04:43 -05:00
|
|
|
home_url = "https://www.nixfox.ca/";
|
2025-01-01 02:02:00 -05:00
|
|
|
};
|
|
|
|
disable_custom_urls = true;
|
|
|
|
disable_guests = true;
|
|
|
|
default_theme = "dark";
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|