mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: so many appservices, so little time...
This commit is contained in:
parent
2b5630d487
commit
bd69ebe901
16 changed files with 655 additions and 65 deletions
27
nixos/servers/matrix/signal.nix
Normal file
27
nixos/servers/matrix/signal.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{config, ...}: {
|
||||
sops.secrets.mautrix-signal-environment = {
|
||||
sopsFile = ./signal.yaml;
|
||||
};
|
||||
services.mautrix-signal = {
|
||||
enable = config.services.matrix-synapse.enable;
|
||||
environmentFile = config.sops.secrets.mautrix-signal-environment.path;
|
||||
settings = {
|
||||
homeserver = {
|
||||
domain = "kittywit.ch";
|
||||
address = "https://yukari.gensokyo.zone";
|
||||
software = "standard";
|
||||
};
|
||||
appservice = {
|
||||
port = 9048;
|
||||
};
|
||||
signal = {
|
||||
};
|
||||
bridge = {
|
||||
permissions = {
|
||||
"kittywit.ch" = "full";
|
||||
"@kat:kittywit.ch" = "admin";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue