Skip to content

Commit

Permalink
nixos/matrix-synapse: remove web_client option
Browse files Browse the repository at this point in the history
Removed in matrix-synapse-0.34.
  • Loading branch information
mmilata committed Apr 4, 2020
1 parent 696274f commit 2acddcb
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions nixos/modules/services/misc/matrix-synapse.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ bind_host: "${cfg.bind_host}"
''}
server_name: "${cfg.server_name}"
pid_file: "/run/matrix-synapse.pid"
web_client: ${boolToString cfg.web_client}
${optionalString (cfg.public_baseurl != null) ''
public_baseurl: "${cfg.public_baseurl}"
''}
Expand Down Expand Up @@ -202,13 +201,6 @@ in {
This is also the last part of your UserID.
'';
};
web_client = mkOption {
type = types.bool;
default = false;
description = ''
Whether to serve a web client from the HTTP/HTTPS root resource.
'';
};
public_baseurl = mkOption {
type = types.nullOr types.str;
default = null;
Expand Down Expand Up @@ -719,6 +711,7 @@ in {
Database configuration must be done manually. An exemplary setup is demonstrated in
<nixpkgs/nixos/tests/matrix-synapse.nix>
'')
(mkRemovedOptionModule [ "services" "matrix-synapse" "web_client" ] "")
];

meta.doc = ./matrix-synapse.xml;
Expand Down

0 comments on commit 2acddcb

Please sign in to comment.