From d2b524bc50ffb53fa999f17cab261f9a37afe437 Mon Sep 17 00:00:00 2001 From: Dusty Pomerleau Date: Sun, 11 Aug 2024 13:05:38 +0000 Subject: [PATCH] fix(darwin): correct typo during user creation (#36) The darwin template was failing for me, until I changed user creation to `users.users.${username}`. Co-authored-by: Dusty Pomerleau Reviewed-on: https://git.auxolotl.org/auxolotl/templates/pulls/36 Co-authored-by: Dusty Pomerleau Co-committed-by: Dusty Pomerleau --- darwin/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darwin/flake.nix b/darwin/flake.nix index e3e4b40..61119f0 100644 --- a/darwin/flake.nix +++ b/darwin/flake.nix @@ -76,7 +76,7 @@ }; }; # Here we can create our user - uses.users.${username} = { + users.users.${username} = { home = "/Users/${username}"; };