fix missing ;

This commit is contained in:
mjallen18
2024-07-02 10:43:42 -05:00
parent 7cc0a882db
commit 5d53991e66
2 changed files with 7 additions and 2 deletions

View File

@@ -64,8 +64,8 @@ in
mealie = { mealie = {
enable = true; enable = true;
baseUrl = "https://mealie.mjallen.dev" baseUrl = "https://mealie.mjallen.dev";
} };
nextcloud = { nextcloud = {
enable = true; enable = true;

View File

@@ -58,5 +58,10 @@ with lib;
type = types.str; type = types.str;
default = ""; default = "";
}; };
allowSignup = mkOption {
type = types.str;
default = "true";
};
}; };
} }