diff --git a/README.md b/README.md index 61ee0f0..252aaaa 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ Most services are served over [tailscale](https://tailscale.com/), using certifi - [Smos](https://github.com/NorfairKing/smos) — a comprehensive self-management system. - [Intray](https://github.com/NorfairKing/intray) — GTD capture tool. - [Actual](https://actualbudget.org/) — budgeting tool. -- [Commarss](https://github.com/Athou/commafeed) — rss reader +- [Commafeed](https://github.com/Athou/commafeed) — rss reader - [Prometheus](https://github.com/prometheus/prometheus) — metric collector - [Grafana](https://github.com/grafana/grafana) — pretty dashboards - [Homer](https://github.com/bastienwirtz/homer) — server homepage diff --git a/docs/ports.md b/docs/ports.md index c663ef0..d0c80ad 100644 --- a/docs/ports.md +++ b/docs/ports.md @@ -16,4 +16,4 @@ The idea is to always use consecutive ports, but never go back and try to recycl | 8410 | [prometheus](../hosts/nixos/lapetus/services/prometheus.nix) | | 8411 | [prometheus node exporter](../hosts/nixos/lapetus/services/prometheus.nix) | | 8412 | [prometheus nginx exporter](../hosts/nixos/lapetus/services/prometheus.nix) | -| 8413 | [commarss](../hosts/nixos/lapetus/services/commarss.nix) | +| 8413 | [commafeed](../hosts/nixos/lapetus/services/commafeed.nix) | diff --git a/hosts/nixos/lapetus/services/commafeed.nix b/hosts/nixos/lapetus/services/commafeed.nix index dee9e52..8f46b62 100644 --- a/hosts/nixos/lapetus/services/commafeed.nix +++ b/hosts/nixos/lapetus/services/commafeed.nix @@ -2,7 +2,7 @@ let port = 8413; host = "rss.moonythm.dev"; - dataDir = "/persist/state/var/lib/commarss"; + dataDir = "/persist/state/var/lib/commafeed"; in { imports = [ ../../common/optional/services/nginx.nix ]; @@ -11,7 +11,7 @@ in services.nginx.virtualHosts.${host} = config.satellite.proxy port { proxyWebsockets = true; }; - virtualisation.oci-containers.containers.commarss = { + virtualisation.oci-containers.containers.commafeed = { image = "athou/commafeed:latest"; autoStart = true;