From 98ccee222108820b74b3ec2760135a520b615e8f Mon Sep 17 00:00:00 2001 From: ediblerope Date: Thu, 30 Apr 2026 20:05:30 +0100 Subject: [PATCH] profilarr: use Docker Hub image (santiagosayshey), not GHCR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ghcr.io/dictionarry-hub/profilarr path mentioned in some docs isn't publicly pullable — anonymous token requests get 403. Canonical image is santiagosayshey/profilarr:latest on Docker Hub per the upstream README. Co-Authored-By: Claude Opus 4.7 --- services/profilarr.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/services/profilarr.nix b/services/profilarr.nix index 07bdac4..e47e755 100644 --- a/services/profilarr.nix +++ b/services/profilarr.nix @@ -14,7 +14,9 @@ ]; virtualisation.oci-containers.containers.profilarr = { - image = "ghcr.io/dictionarry-hub/profilarr:latest"; + # Canonical image lives on Docker Hub (santiagosayshey is the maintainer); + # the Dictionarry-Hub GHCR path that some docs mention isn't publicly pullable. + image = "santiagosayshey/profilarr:latest"; volumes = [ "/var/lib/profilarr:/config" ];