Oops, put the option in the wrong place

This commit is contained in:
niten 2024-02-04 23:03:20 -08:00
parent cc0a8b5cba
commit b1197db920
1 changed files with 5 additions and 5 deletions

View File

@ -130,11 +130,6 @@ let
default = true;
};
state-directory = mkOption {
type = str;
description = "The path at which to store server state.";
};
database = mkOption {
type = nullOr (submodule databaseOpts);
description = "Database configuration for storing contact data.";
@ -217,6 +212,11 @@ in {
};
};
state-directory = mkOption {
type = str;
description = "The path at which to store server state.";
};
user = mkOption {
type = str;
description = "User as which webmail will run.";