We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f9a4a3 + 60e8102 commit 3a484daCopy full SHA for 3a484da
icons/services/headscale.svg
nixos/extractors/services.nix
@@ -120,6 +120,15 @@ in {
120
details.listen = mkIf (address != null && port != null) {text = "${address}:${toString port}";};
121
};
122
123
+ headscale = mkIf config.services.headscale.enable {
124
+ name = "Headscale";
125
+ icon = "services.headscale";
126
+ info = config.services.headscale.settings.server_url;
127
+ details = {
128
+ listen.text = "${config.services.headscale.address}:${toString config.services.headscale.port}";
129
+ };
130
131
+
132
home-assistant = mkIf config.services.home-assistant.enable {
133
name = "Home Assistant";
134
icon = "services.home-assistant";
0 commit comments