summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-31 20:41:37 +0200
committerGitHub <noreply@github.com>2024-05-31 20:41:37 +0200
commit080af6461ec8fa1666b0b8218933d17ce6f0acbc (patch)
treeed6ebd919b31198fd9ea2e96139ae7a8cbf2d59f /nixos
parent51ff335148acbf8a5c902c4a63971328591794eb (diff)
parentfad7ecc30f22b6ea8f82b450d306b3fc69953b78 (diff)
Merge pull request #314294 from james-atkins/mealie-update
mealie: 1.2.0 -> 1.7.0
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/mealie.nix3
-rw-r--r--nixos/tests/mealie.nix2
2 files changed, 2 insertions, 3 deletions
diff --git a/nixos/modules/services/web-apps/mealie.nix b/nixos/modules/services/web-apps/mealie.nix
index 8f68828e7a0b..0d41cffd3d9d 100644
--- a/nixos/modules/services/web-apps/mealie.nix
+++ b/nixos/modules/services/web-apps/mealie.nix
@@ -28,8 +28,6 @@ in
Configuration of the Mealie service.
See [the mealie documentation](https://nightly.mealie.io/documentation/getting-started/installation/backend-config/) for available options and default values.
-
- In addition to the official documentation, you can set {env}`MEALIE_LOG_FILE`.
'';
example = {
ALLOW_SIGNUP = "false";
@@ -61,6 +59,7 @@ in
PRODUCTION = "true";
ALEMBIC_CONFIG_FILE="${pkg}/config/alembic.ini";
API_PORT = toString cfg.port;
+ BASE_URL = "http://localhost:${cfg.port}";
DATA_DIR = "/var/lib/mealie";
CRF_MODEL_PATH = "/var/lib/mealie/model.crfmodel";
} // (builtins.mapAttrs (_: val: toString val) cfg.settings);
diff --git a/nixos/tests/mealie.nix b/nixos/tests/mealie.nix
index 88f749c71294..810d47ecd2ec 100644
--- a/nixos/tests/mealie.nix
+++ b/nixos/tests/mealie.nix
@@ -3,7 +3,7 @@ import ./make-test-python.nix ({ pkgs, ...} :
{
name = "mealie";
meta = with pkgs.lib.maintainers; {
- maintainers = [ litchipi ];
+ maintainers = [ litchipi anoa ];
};
nodes = {