mattermost: don't read config from database
apparently the nixpkgs mattermost module simply ignores its own config if mutableConfig is false, and reads whatever config is currently in the database (in our case, old stuff involving auth.infra4future.de). This overwrites that.
This commit is contained in:
parent
52f9f2d64c
commit
f64b1f9534
1 changed files with 4 additions and 1 deletions
|
@ -36,6 +36,9 @@ in {
|
|||
|
||||
systemd.services.mattermost.serviceConfig.EnvironmentFile =
|
||||
"/persist/mattermost/secrets.env";
|
||||
# overwrite the -c flag given in the module. this can be removed once we're on nixos 22.05
|
||||
systemd.services.mattermost.serviceConfig.ExecStart =
|
||||
lib.mkForce "${pkgs.mattermost}/bin/mattermost -c /persist/mattermost/config/config.json";
|
||||
|
||||
# couldn't figure out how to actually overwrite modules, so now
|
||||
# there's two mattermost modules ...
|
||||
|
@ -125,7 +128,7 @@ in {
|
|||
EnableSMTPAuth = true;
|
||||
SMTPUsername = "noreply@infra4future.de";
|
||||
SMTPServer = "mail.hacc.space";
|
||||
SMTPPort = 465;
|
||||
SMTPPort = "465";
|
||||
SMTPServerTimeout = 10;
|
||||
ConnectionSecurity = "TLS";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue