From b1197db9207268c09ba684b553d2bf163c1f532d Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 4 Feb 2024 23:03:20 -0800 Subject: [PATCH] Oops, put the option in the wrong place --- lib/fudo/webmail.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/fudo/webmail.nix b/lib/fudo/webmail.nix index 9ff659e..8c5dfa9 100644 --- a/lib/fudo/webmail.nix +++ b/lib/fudo/webmail.nix @@ -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.";