From dd82cce76670a16c7f21e1bd769eee0d45d58fe5 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Mon, 3 Mar 2025 10:04:50 +0100 Subject: [PATCH] nixos/tandoor-recipes: fix default user and group creation Signed-off-by: Sefa Eyeoglu --- nixos/modules/services/misc/tandoor-recipes.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/misc/tandoor-recipes.nix b/nixos/modules/services/misc/tandoor-recipes.nix index 371a1ee6a7e8..b56185bd0c45 100644 --- a/nixos/modules/services/misc/tandoor-recipes.nix +++ b/nixos/modules/services/misc/tandoor-recipes.nix @@ -92,14 +92,14 @@ in config = lib.mkIf cfg.enable { users.users = lib.mkIf (cfg.user == "tandoor_recipes") { - tandoor-recipes = { + tandoor_recipes = { inherit (cfg) group; isSystemUser = true; }; }; users.groups = lib.mkIf (cfg.group == "tandoor_recipes") { - tandoor-recipes = { }; + tandoor_recipes = { }; }; systemd.services.tandoor-recipes = {