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.
2 parents 20b5c5c + d654fae commit 733849fCopy full SHA for 733849f
icons/services/mautrix-telegram.svg
nixos/extractors/services.nix
@@ -421,6 +421,17 @@ in
421
details.listen.text = mkIf (address != null && port != null) "${address}:${builtins.toString port}";
422
};
423
424
+ mautrix-telegram =
425
+ let
426
+ address = config.services.mautrix-telegram.settings.appservice.hostname or null;
427
+ port = config.services.mautrix-telegram.settings.appservice.port or null;
428
+ in
429
+ mkIf config.services.mautrix-telegram.enable {
430
+ name = "mautrix-telegram";
431
+ icon = "services.mautrix-telegram";
432
+ details.listen.text = mkIf (address != null && port != null) "${address}:${builtins.toString port}";
433
+ };
434
+
435
mautrix-whatsapp =
436
let
437
address = config.services.mautrix-whatsapp.settings.appservice.hostname or null;
0 commit comments