about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMasum Reza <50095635+JohnRTitor@users.noreply.github.com>2024-06-20 20:27:18 +0530
committerGitHub <noreply@github.com>2024-06-20 20:27:18 +0530
commitd603719ec6e294f034936c0d0dc06f689d91b6c3 (patch)
tree5431d5da7bc85049065fe5a6ac014ed1d2b9abe4 /nixos
parent9bf71066c85434be697fc252ef8b808a0d18a60a (diff)
parentd94a39f87de439090cdc23663d082396d3ce468d (diff)
downloadnixlib-d603719ec6e294f034936c0d0dc06f689d91b6c3.tar
nixlib-d603719ec6e294f034936c0d0dc06f689d91b6c3.tar.gz
nixlib-d603719ec6e294f034936c0d0dc06f689d91b6c3.tar.bz2
nixlib-d603719ec6e294f034936c0d0dc06f689d91b6c3.tar.lz
nixlib-d603719ec6e294f034936c0d0dc06f689d91b6c3.tar.xz
nixlib-d603719ec6e294f034936c0d0dc06f689d91b6c3.tar.zst
nixlib-d603719ec6e294f034936c0d0dc06f689d91b6c3.zip
Merge pull request #321140 from pyrox0/mealie-1.9
mealie: 1.7.0 -> 1.9.0
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/mealie.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/mealie.nix b/nixos/modules/services/web-apps/mealie.nix
index 0d41cffd3d9d..2484b2489c0d 100644
--- a/nixos/modules/services/web-apps/mealie.nix
+++ b/nixos/modules/services/web-apps/mealie.nix
@@ -59,7 +59,7 @@ in
         PRODUCTION = "true";
         ALEMBIC_CONFIG_FILE="${pkg}/config/alembic.ini";
         API_PORT = toString cfg.port;
-        BASE_URL = "http://localhost:${cfg.port}";
+        BASE_URL = "http://localhost:${toString cfg.port}";
         DATA_DIR = "/var/lib/mealie";
         CRF_MODEL_PATH = "/var/lib/mealie/model.crfmodel";
       } // (builtins.mapAttrs (_: val: toString val) cfg.settings);