Skip to content

Commit d0de3c1

Browse files
committed
feat(extractors/services): Add support for Tabby
1 parent ddee774 commit d0de3c1

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

icons/services/tabby.svg

+1
Loading

nixos/extractors/services.nix

+6
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,12 @@ in {
440440
details.listen = mkIf (address != null && port != null) {text = "${address}:${toString port}";};
441441
};
442442

443+
tabby = mkIf config.services.tabby.enable {
444+
name = "Tabby";
445+
icon = "services.tabby";
446+
details.listen.text = "${config.services.tabby.host}:${toString config.services.tabby.port}";
447+
};
448+
443449
traefik = let
444450
dynCfg = config.services.traefik.dynamicConfigOptions;
445451
in

0 commit comments

Comments
 (0)