diff --git a/modules/hosts/crow/configuration.nix b/modules/hosts/crow/configuration.nix index 2dbb1fe..203b64f 100644 --- a/modules/hosts/crow/configuration.nix +++ b/modules/hosts/crow/configuration.nix @@ -52,8 +52,8 @@ }; features = { "feature_group_calls" = true; - "feature_video_rooms" = false; - "feature_element_call_video_rooms" = false; + "feature_video_rooms" = true; + "feature_element_call_video_rooms" = true; }; element_call = { url = null; @@ -69,7 +69,8 @@ nativeBuildInputs = [ makeWrapper ]; postBuild = '' wrapProgram $out/bin/element-desktop \ - --add-flags "--password-store=gnome-libsecret --config-path ${elementConfig}" + --add-flags "--password-store=gnome-libsecret" \ + --set ELEMENT_DESKTOP_CONFIG_JSON "${elementConfig}" ''; }) ];