We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94da806 commit 4f39bc1Copy full SHA for 4f39bc1
icons/services/mautrix-signal.svg
nixos/extractors/services.nix
@@ -410,6 +410,17 @@ in
410
) "${builtins.head listener.bind_addresses}:${builtins.toString listener.port}";
411
};
412
413
+ mautrix-signal =
414
+ let
415
+ address = config.services.mautrix-signal.settings.appservice.hostname or null;
416
+ port = config.services.mautrix-signal.settings.appservice.port or null;
417
+ in
418
+ mkIf config.services.mautrix-signal.enable {
419
+ name = "mautrix-signal";
420
+ icon = "services.mautrix-signal";
421
+ details.listen.text = mkIf (address != null && port != null) "${address}:${builtins.toString port}";
422
+ };
423
+
424
mautrix-whatsapp =
425
let
426
address = config.services.mautrix-whatsapp.settings.appservice.hostname or null;
0 commit comments