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 ddee774 commit d0de3c1Copy full SHA for d0de3c1
icons/services/tabby.svg
nixos/extractors/services.nix
@@ -440,6 +440,12 @@ in {
440
details.listen = mkIf (address != null && port != null) {text = "${address}:${toString port}";};
441
};
442
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
+
449
traefik = let
450
dynCfg = config.services.traefik.dynamicConfigOptions;
451
in
0 commit comments