From 60b22f70c1d26272dc2287ef82b53f532afc86b2 Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Tue, 30 Jan 2024 22:09:19 +0000 Subject: [PATCH] Bump umami to v1.40 This is a prerequisite to upgrading to v2. --- shared/umami/default.nix | 2 +- shared/umami/options.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shared/umami/default.nix b/shared/umami/default.nix index 62bb2ef1..a5e1d03c 100644 --- a/shared/umami/default.nix +++ b/shared/umami/default.nix @@ -22,7 +22,7 @@ in nixfiles.oci-containers.pods.umami = { containers = { web = { - image = "ghcr.io/mikecao/umami:${cfg.umamiTag}"; + image = "ghcr.io/umami-software/umami:${cfg.umamiTag}"; environment = { "DATABASE_URL" = if backend == "docker" then "postgres://umami:umami@umami-db/umami" else "postgres://umami:umami@localhost/umami"; }; diff --git a/shared/umami/options.nix b/shared/umami/options.nix index 2bcabb6a..3cc1e50e 100644 --- a/shared/umami/options.nix +++ b/shared/umami/options.nix @@ -30,9 +30,9 @@ with lib; umamiTag = mkOption { type = types.str; - default = "postgresql-latest"; + default = "postgresql-v1.40"; description = mdDoc '' - Tag to use of the `ghcr.io/mikecao/umami` container image. + Tag to use of the `ghcr.io/umami-software/umami` container image. ''; };