Skip to content

Commit

Permalink
Merge pull request #65 from KP64/feat/invidious
Browse files Browse the repository at this point in the history
  • Loading branch information
oddlama authored Jan 17, 2025
2 parents b3ab751 + e89026d commit ddee774
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions icons/services/invidious.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 10 additions & 4 deletions nixos/extractors/services.nix
Original file line number Diff line number Diff line change
Expand Up @@ -209,16 +209,22 @@ in {
details.listen.text = "${config.services.hydra.listenHost}:${toString config.services.hydra.port}";
};

immich = mkIf (config.services.immich.enable or false) {
name = "Immich";
icon = "services.immich";
details.listen = mkIf config.services.immich.openFirewall {text = "${config.services.immich.host}:${toString config.services.immich.port}";};
};

influxdb2 = mkIf config.services.influxdb2.enable {
name = "InfluxDB v2";
icon = "services.influxdb2";
details.listen.text = config.services.influxdb2.settings.http-bind-address or "localhost:8086";
};

immich = mkIf (config.services.immich.enable or false) {
name = "Immich";
icon = "services.immich";
details.listen = mkIf config.services.immich.openFirewall {text = "${config.services.immich.host}:${toString config.services.immich.port}";};
invidious = mkIf config.services.invidious.enable {
name = "Invidious";
icon = "services.invidious";
details.listen.text = "${config.services.invidious.address}:${toString config.services.invidious.port}";
};

jellyfin = mkIf config.services.jellyfin.enable {
Expand Down

0 comments on commit ddee774

Please sign in to comment.