feate(nixos) bfs: matrix, element, bla bla bla
This commit is contained in:
22
nixos/system/bfs/element.nix
Normal file
22
nixos/system/bfs/element.nix
Normal file
@@ -0,0 +1,22 @@
|
||||
{ config, lib, pkgs, ... }: let
|
||||
cfg = config.currentServer.matrix;
|
||||
in {
|
||||
config = {
|
||||
services.nginx.virtualHosts."element.${cfg.matrixDomain}" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
|
||||
root = pkgs.element-web.override {
|
||||
conf = {
|
||||
default_server_config = {
|
||||
"m.homeserver".base_url = "https://${cfg.matrixDomain}";
|
||||
"m.identity_server".base_url = "https://vector.im";
|
||||
};
|
||||
|
||||
default_theme = "dark";
|
||||
show_labs_settings = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user