From a096e3440524850d64486f20e4997bae3edb227c Mon Sep 17 00:00:00 2001 From: Joachim Schiele Date: Mon, 4 Dec 2023 18:06:17 +0100 Subject: [PATCH] #81 _module missing quick fix --- modules/core/dbshell/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/dbshell/default.nix b/modules/core/dbshell/default.nix index e908f1b..d08dd86 100644 --- a/modules/core/dbshell/default.nix +++ b/modules/core/dbshell/default.nix @@ -21,7 +21,7 @@ let value = lib.mapAttrs' (lib.const (dbcfg: { inherit (dbcfg) name; value = { - user = cfg._module.args.mkUniqueUser dbcfg.user; + user = dbcfg.user; # FIXME apply mkUniqueUser maybe? command = let inherit (dbcfg) type; errMsg = "Unable to determine database shell access command"