Skip to content

Commit ae1f0f5

Browse files
authored
nixos/tandoor-recipes: fix default user and group creation (#386648)
2 parents 3e591e4 + dd82cce commit ae1f0f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nixos/modules/services/misc/tandoor-recipes.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ in
9292

9393
config = lib.mkIf cfg.enable {
9494
users.users = lib.mkIf (cfg.user == "tandoor_recipes") {
95-
tandoor-recipes = {
95+
tandoor_recipes = {
9696
inherit (cfg) group;
9797
isSystemUser = true;
9898
};
9999
};
100100

101101
users.groups = lib.mkIf (cfg.group == "tandoor_recipes") {
102-
tandoor-recipes = { };
102+
tandoor_recipes = { };
103103
};
104104

105105
systemd.services.tandoor-recipes = {

0 commit comments

Comments
 (0)