diff --git a/hosts/nas/configuration.nix b/hosts/nas/configuration.nix index 5cd4c3e..3b91e13 100644 --- a/hosts/nas/configuration.nix +++ b/hosts/nas/configuration.nix @@ -64,8 +64,8 @@ in mealie = { enable = true; - baseUrl = "https://mealie.mjallen.dev" - } + baseUrl = "https://mealie.mjallen.dev"; + }; nextcloud = { enable = true; diff --git a/modules/apps/mealie/options.nix b/modules/apps/mealie/options.nix index b7da63c..8fd1e12 100644 --- a/modules/apps/mealie/options.nix +++ b/modules/apps/mealie/options.nix @@ -58,5 +58,10 @@ with lib; type = types.str; default = ""; }; + + allowSignup = mkOption { + type = types.str; + default = "true"; + }; }; }