diff options
-rwxr-xr-x | host/Rory-synapse/configuration.nix | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/host/Rory-synapse/configuration.nix b/host/Rory-synapse/configuration.nix index 0542abd..d50329c 100755 --- a/host/Rory-synapse/configuration.nix +++ b/host/Rory-synapse/configuration.nix @@ -126,7 +126,8 @@ name = "psycopg2"; args = { user = "postgres"; - passwordFile = "/run/secrets/matrix-synapse-password"; + #passwordFile = "/run/secrets/matrix-synapse-password"; + database = "matrix-synapse-rory-gay"; host = "192.168.1.3"; }; @@ -137,25 +138,27 @@ }; plugins = with pkgs.matrix-synapse-plugins; [ - matrix-synapse-mjolnir-antispam + # Alicia - need to port draupnir... + #matrix-synapse-mjolnir-antispam matrix-synapse-pam ]; }; - services.draupnir = { - enable = true; - pantalaimon = { - enable = true; - username = "draupnir"; - passwordFile = "/run/secrets/draupnir-password"; - options = { - homeserver = "http://localhost:8008"; - ssl = false; - }; - - }; + # Alicia - doesnt work yet... until in nixpkgs... + #services.draupnir = { + # enable = true; + # pantalaimon = { + # enable = true; + # username = "draupnir"; + # passwordFile = "/run/secrets/draupnir-password"; + # options = { + # homeserver = "http://localhost:8008"; + # ssl = false; + # }; + # + # }; managementRoom = "#draupnir-mgmt:rory.gay"; }; |