remove fix synapse permissions script

This commit is contained in:
Charlotte 🦝 Delenk 2022-05-01 08:08:05 +01:00
parent 6f32149a9a
commit b2cf4e6232
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -1,4 +1,4 @@
{ lib, config, ... }: {
{ pkgs, lib, config, ... }: {
services.matrix-synapse = {
enable = true;
settings = {
@ -67,6 +67,7 @@
"DATABASE synapse" = "ALL PRIVILEGES";
};
}];
systemd.services.matrix-synapse.serviceConfig.ExecStartPre = lib.mkForce (pkgs.writeShellScript "dummy" "true");
services.nginx.virtualHosts =
let
listenIPs = (import ../../utils/getInternalIP.nix config).listenIPs;