Fix saml login! :D
This commit is contained in:
parent
8910e4b8a2
commit
b116c3a56e
|
@ -1,3 +1,4 @@
|
|||
|
||||
{ lib, pkgs, config, ... }:
|
||||
|
||||
let
|
||||
|
@ -433,7 +434,7 @@ in
|
|||
partOf = [ "matrix-synapse.target" ];
|
||||
wantedBy = [ "matrix-synapse.target" ];
|
||||
preStart = ''
|
||||
${cfg.package}/bin/homeserver \
|
||||
${cfg.package}/bin/synapse_homeserver \
|
||||
${ lib.concatMapStringsSep "\n " (x: "--config-path ${x} \\") ([ matrix-synapse-common-config ] ++ cfg.extraConfigFiles) }
|
||||
--keys-directory ${cfg.dataDir} \
|
||||
--generate-keys
|
||||
|
@ -445,7 +446,7 @@ in
|
|||
Group = "matrix-synapse";
|
||||
WorkingDirectory = cfg.dataDir;
|
||||
ExecStart = ''
|
||||
${cfg.package}/bin/homeserver \
|
||||
${cfg.package}/bin/synapse_homeserver \
|
||||
${ lib.concatMapStringsSep "\n " (x: "--config-path ${x} \\") ([ matrix-synapse-common-config ] ++ cfg.extraConfigFiles) }
|
||||
--keys-directory ${cfg.dataDir}
|
||||
'';
|
||||
|
@ -471,7 +472,6 @@ in
|
|||
after = [ "matrix-synapse.service" ];
|
||||
environment.PYTHONPATH = lib.makeSearchPathOutput "lib" cfg.package.python.sitePackages [
|
||||
pluginsEnv
|
||||
# (cfg.package.python.pkgs.toPythonModule cfg.package)
|
||||
];
|
||||
serviceConfig = {
|
||||
Type = "notify";
|
||||
|
@ -479,7 +479,7 @@ in
|
|||
Group = "matrix-synapse";
|
||||
WorkingDirectory = cfg.dataDir;
|
||||
ExecStart = ''
|
||||
${cfg.package.python.withPackages (ps: [(cfg.package.python.pkgs.toPythonModule cfg.package)])}/bin/python -m synapse.app.generic_worker \
|
||||
${cfg.package}/bin/synapse_worker \
|
||||
${ lib.concatMapStringsSep "\n " (x: "--config-path ${x} \\") ([ matrix-synapse-common-config (workerConfig worker) ] ++ cfg.extraConfigFiles) }
|
||||
--keys-directory ${cfg.dataDir}
|
||||
'';
|
||||
|
@ -489,4 +489,4 @@ in
|
|||
) workerList);
|
||||
})
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ in
|
|||
|
||||
services.matrix-synapse-next = {
|
||||
enable = true;
|
||||
package = pkgs.unstable.matrix-synapse; # Can be stable after 21.11?
|
||||
package = pkgs.matrix-synapse;
|
||||
|
||||
dataDir = "/data/synapse";
|
||||
|
||||
|
@ -63,13 +63,17 @@ in
|
|||
}
|
||||
];
|
||||
|
||||
enable_registration = true;
|
||||
|
||||
enable_metrics = true;
|
||||
|
||||
use_presence = true;
|
||||
|
||||
|
||||
password_config.enabled = lib.mkForce false;
|
||||
|
||||
enable_registration = false;
|
||||
|
||||
|
||||
saml2_config = {
|
||||
sp_config.metadata.remote = [
|
||||
{ url = "https://idp.pvv.ntnu.no/simplesaml/saml2/idp/metadata.php"; }
|
||||
|
@ -146,8 +150,6 @@ in
|
|||
|
||||
};
|
||||
|
||||
password_config.enable = lib.mkForce false;
|
||||
|
||||
signing_key_path = "${cfg.dataDir}/homeserver.signing.key";
|
||||
media_store_path = "${cfg.dataDir}/media";
|
||||
|
||||
|
|
Loading…
Reference in New Issue