Format all Nix files using the officially approved formatter,
making the CI check introduced in the previous commit succeed:
nix-build ci -A fmt.check
This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153)
of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166).
This commit will lead to merge conflicts for a number of PRs,
up to an estimated ~1100 (~33%) among the PRs with activity in the past 2
months, but that should be lower than what it would be without the previous
[partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537).
Merge conflicts caused by this commit can now automatically be resolved while rebasing using the
[auto-rebase script](8616af08d9/maintainers/scripts/auto-rebase).
If you run into any problems regarding any of this, please reach out to the
[formatting team](https://nixos.org/community/teams/formatting/) by
pinging @NixOS/nix-formatting.
232 lines
7.8 KiB
Nix
232 lines
7.8 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.mautrix-whatsapp;
|
|
dataDir = "/var/lib/mautrix-whatsapp";
|
|
registrationFile = "${dataDir}/whatsapp-registration.yaml";
|
|
settingsFile = "${dataDir}/config.json";
|
|
settingsFileUnsubstituted = settingsFormat.generate "mautrix-whatsapp-config-unsubstituted.json" cfg.settings;
|
|
settingsFormat = pkgs.formats.json { };
|
|
appservicePort = 29318;
|
|
|
|
mkDefaults = lib.mapAttrsRecursive (n: v: lib.mkDefault v);
|
|
defaultConfig = {
|
|
homeserver.address = "http://localhost:8448";
|
|
appservice = {
|
|
hostname = "[::]";
|
|
port = appservicePort;
|
|
database.type = "sqlite3";
|
|
database.uri = "${dataDir}/mautrix-whatsapp.db";
|
|
id = "whatsapp";
|
|
bot.username = "whatsappbot";
|
|
bot.displayname = "WhatsApp Bridge Bot";
|
|
as_token = "";
|
|
hs_token = "";
|
|
};
|
|
bridge = {
|
|
username_template = "whatsapp_{{.}}";
|
|
displayname_template = "{{if .BusinessName}}{{.BusinessName}}{{else if .PushName}}{{.PushName}}{{else}}{{.JID}}{{end}} (WA)";
|
|
double_puppet_server_map = { };
|
|
login_shared_secret_map = { };
|
|
command_prefix = "!wa";
|
|
permissions."*" = "relay";
|
|
relay.enabled = true;
|
|
};
|
|
logging = {
|
|
min_level = "info";
|
|
writers = lib.singleton {
|
|
type = "stdout";
|
|
format = "pretty-colored";
|
|
time_format = " ";
|
|
};
|
|
};
|
|
};
|
|
|
|
in
|
|
{
|
|
options.services.mautrix-whatsapp = {
|
|
enable = lib.mkEnableOption "mautrix-whatsapp, a puppeting/relaybot bridge between Matrix and WhatsApp";
|
|
|
|
settings = lib.mkOption {
|
|
type = settingsFormat.type;
|
|
default = defaultConfig;
|
|
description = ''
|
|
{file}`config.yaml` configuration as a Nix attribute set.
|
|
Configuration options should match those described in
|
|
[example-config.yaml](https://github.com/mautrix/whatsapp/blob/master/example-config.yaml).
|
|
Secret tokens should be specified using {option}`environmentFile`
|
|
instead of this world-readable attribute set.
|
|
'';
|
|
example = {
|
|
appservice = {
|
|
database = {
|
|
type = "postgres";
|
|
uri = "postgresql:///mautrix_whatsapp?host=/run/postgresql";
|
|
};
|
|
id = "whatsapp";
|
|
ephemeral_events = false;
|
|
};
|
|
bridge = {
|
|
history_sync = {
|
|
request_full_sync = true;
|
|
};
|
|
private_chat_portal_meta = true;
|
|
mute_bridging = true;
|
|
encryption = {
|
|
allow = true;
|
|
default = true;
|
|
require = true;
|
|
};
|
|
provisioning = {
|
|
shared_secret = "disable";
|
|
};
|
|
permissions = {
|
|
"example.com" = "user";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
environmentFile = lib.mkOption {
|
|
type = lib.types.nullOr lib.types.path;
|
|
default = null;
|
|
description = ''
|
|
File containing environment variables to be passed to the mautrix-whatsapp service,
|
|
in which secret tokens can be specified securely by optionally defining a value for
|
|
`MAUTRIX_WHATSAPP_BRIDGE_LOGIN_SHARED_SECRET`.
|
|
'';
|
|
};
|
|
|
|
serviceDependencies = lib.mkOption {
|
|
type = with lib.types; listOf str;
|
|
default = lib.optional config.services.matrix-synapse.enable config.services.matrix-synapse.serviceUnit;
|
|
defaultText = lib.literalExpression ''
|
|
optional config.services.matrix-synapse.enable config.services.matrix-synapse.serviceUnits
|
|
'';
|
|
description = ''
|
|
List of Systemd services to require and wait for when starting the application service.
|
|
'';
|
|
};
|
|
|
|
registerToSynapse = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = config.services.matrix-synapse.enable;
|
|
defaultText = lib.literalExpression "config.services.matrix-synapse.enable";
|
|
description = ''
|
|
Whether to add the bridge's app service registration file to
|
|
`services.matrix-synapse.settings.app_service_config_files`.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
users.users.mautrix-whatsapp = {
|
|
isSystemUser = true;
|
|
group = "mautrix-whatsapp";
|
|
home = dataDir;
|
|
description = "Mautrix-WhatsApp bridge user";
|
|
};
|
|
|
|
users.groups.mautrix-whatsapp = { };
|
|
|
|
services.matrix-synapse = lib.mkIf cfg.registerToSynapse {
|
|
settings.app_service_config_files = [ registrationFile ];
|
|
};
|
|
systemd.services.matrix-synapse = lib.mkIf cfg.registerToSynapse {
|
|
serviceConfig.SupplementaryGroups = [ "mautrix-whatsapp" ];
|
|
};
|
|
|
|
services.mautrix-whatsapp.settings = lib.mkMerge (
|
|
map mkDefaults [
|
|
defaultConfig
|
|
# Note: this is defined here to avoid the docs depending on `config`
|
|
{ homeserver.domain = config.services.matrix-synapse.settings.server_name; }
|
|
]
|
|
);
|
|
|
|
systemd.services.mautrix-whatsapp = {
|
|
description = "Mautrix-WhatsApp Service - A WhatsApp bridge for Matrix";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
wants = [ "network-online.target" ] ++ cfg.serviceDependencies;
|
|
after = [ "network-online.target" ] ++ cfg.serviceDependencies;
|
|
|
|
preStart = ''
|
|
# substitute the settings file by environment variables
|
|
# in this case read from EnvironmentFile
|
|
test -f '${settingsFile}' && rm -f '${settingsFile}'
|
|
old_umask=$(umask)
|
|
umask 0177
|
|
${pkgs.envsubst}/bin/envsubst \
|
|
-o '${settingsFile}' \
|
|
-i '${settingsFileUnsubstituted}'
|
|
umask $old_umask
|
|
|
|
# generate the appservice's registration file if absent
|
|
if [ ! -f '${registrationFile}' ]; then
|
|
${pkgs.mautrix-whatsapp}/bin/mautrix-whatsapp \
|
|
--generate-registration \
|
|
--config='${settingsFile}' \
|
|
--registration='${registrationFile}'
|
|
fi
|
|
chmod 640 ${registrationFile}
|
|
|
|
umask 0177
|
|
# 1. Overwrite registration tokens in config
|
|
# 2. If environment variable MAUTRIX_WHATSAPP_BRIDGE_LOGIN_SHARED_SECRET
|
|
# is set, set it as the login shared secret value for the configured
|
|
# homeserver domain.
|
|
${pkgs.yq}/bin/yq -s '.[0].appservice.as_token = .[1].as_token
|
|
| .[0].appservice.hs_token = .[1].hs_token
|
|
| .[0]
|
|
| if env.MAUTRIX_WHATSAPP_BRIDGE_LOGIN_SHARED_SECRET then .bridge.login_shared_secret_map.[.homeserver.domain] = env.MAUTRIX_WHATSAPP_BRIDGE_LOGIN_SHARED_SECRET else . end' \
|
|
'${settingsFile}' '${registrationFile}' > '${settingsFile}.tmp'
|
|
mv '${settingsFile}.tmp' '${settingsFile}'
|
|
umask $old_umask
|
|
'';
|
|
|
|
serviceConfig = {
|
|
User = "mautrix-whatsapp";
|
|
Group = "mautrix-whatsapp";
|
|
EnvironmentFile = cfg.environmentFile;
|
|
StateDirectory = baseNameOf dataDir;
|
|
WorkingDirectory = dataDir;
|
|
ExecStart = ''
|
|
${pkgs.mautrix-whatsapp}/bin/mautrix-whatsapp \
|
|
--config='${settingsFile}' \
|
|
--registration='${registrationFile}'
|
|
'';
|
|
LockPersonality = true;
|
|
MemoryDenyWriteExecute = true;
|
|
NoNewPrivileges = true;
|
|
PrivateDevices = true;
|
|
PrivateTmp = true;
|
|
PrivateUsers = true;
|
|
ProtectClock = true;
|
|
ProtectControlGroups = true;
|
|
ProtectHome = true;
|
|
ProtectHostname = true;
|
|
ProtectKernelLogs = true;
|
|
ProtectKernelModules = true;
|
|
ProtectKernelTunables = true;
|
|
ProtectSystem = "strict";
|
|
Restart = "on-failure";
|
|
RestartSec = "30s";
|
|
RestrictRealtime = true;
|
|
RestrictSUIDSGID = true;
|
|
SystemCallArchitectures = "native";
|
|
SystemCallErrorNumber = "EPERM";
|
|
SystemCallFilter = [ "@system-service" ];
|
|
Type = "simple";
|
|
UMask = 27;
|
|
};
|
|
restartTriggers = [ settingsFileUnsubstituted ];
|
|
};
|
|
};
|
|
meta.maintainers = with lib.maintainers; [ frederictobiasc ];
|
|
}
|