Upgrade bolty to 22.05

This commit is contained in:
Cyryl Płotnicki 2022-06-04 08:35:58 +01:00
parent a3d24ca9ae
commit c3ad4e9485
2 changed files with 15 additions and 17 deletions

View file

@ -6,7 +6,6 @@
../../server-security.nix
../../tailscale.nix
../cli.nix
./homeassistant.nix
./matrix-server.nix
./nextcloud.nix
./print-server.nix

View file

@ -12,23 +12,22 @@
services.matrix-synapse = {
enable = true;
server_name = "cyplo.dev";
enable_registration = false;
listeners = [{
port = 8008;
bind_address = "bolty.cyplo.github.beta.tailscale.net";
type = "http";
tls = false;
x_forwarded = true;
resources = [{
names = [ "client" "federation" ];
compress = false;
settings = {
server_name = "cyplo.dev";
listeners = [{
port = 8008;
bind_addresses = [ "bolty.cyplo.github.beta.tailscale.net" ];
type = "http";
tls = false;
x_forwarded = true;
resources = [{
names = [ "client" "federation" ];
compress = false;
}];
}];
}];
app_service_config_files = [ ];
extraConfig = ''
experimental_features: { spaces_enabled: true }
'';
experimental_features = { spaces_enabled = true; };
enable_registration = false;
};
package =
inputs.nixpkgs-nixos-unstable.legacyPackages."x86_64-linux".matrix-synapse;
};