Skip to content

Commit

Permalink
mautrix-signal: run on matrix server
Browse files Browse the repository at this point in the history
Signed-off-by: Sumner Evans <[email protected]>
  • Loading branch information
sumnerevans committed Jan 3, 2024
1 parent f2c7aba commit 5f29d67
Show file tree
Hide file tree
Showing 6 changed files with 3,915 additions and 28 deletions.
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions nixos/hosts/matrix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@
secretYAML = "/run/keys/appservice_login_shared_secret_yaml";
} // (import ../../../secrets/matrix/appservices/mautrix-discord.nix);

# # Signal <-> Matrix Bridge
# services.mautrix-signal = {
# enable = true;
# homeserver = "https://matrix.nevarro.space";
# secretYAML = "/run/keys/appservice_login_shared_secret_yaml";
# } // (import ../../../secrets/matrix/appservices/mautrix-signal.nix);
# Signal <-> Matrix Bridge
services.mautrix-signal = {
enable = true;
homeserver = "https://matrix.nevarro.space";
secretYAML = "/run/keys/appservice_login_shared_secret_yaml";
} // (import ../../../secrets/matrix/appservices/mautrix-signal.nix);

# Slack <-> Matrix Bridge
services.mautrix-slack = {
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/services/matrix/mautrix-signal.nix
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ in
};
listenPort = mkOption {
type = types.int;
default = 9891;
default = 9892;
description = "The port for mautrix-signal to listen on.";
};
botUsername = mkOption {
Expand Down
Loading

0 comments on commit 5f29d67

Please sign in to comment.