fix(darwin): correct typo during user creation (#36)
Some checks failed
buildbot/nix-eval Build done.
Code Check / Run nixfmt and statix (push) Has been cancelled

The darwin template was failing for me, until I changed user creation to `users.users.${username}`.

Co-authored-by: Dusty Pomerleau <dustypomerleau@users.noreply.github.com>
Reviewed-on: #36
Co-authored-by: Dusty Pomerleau <dustypomerleau@noreply.git.auxolotl.org>
Co-committed-by: Dusty Pomerleau <dustypomerleau@noreply.git.auxolotl.org>
This commit is contained in:
Dusty Pomerleau 2024-08-11 13:05:38 +00:00 committed by Skyler Grey
parent dcb9bc3396
commit d2b524bc50

View file

@ -76,7 +76,7 @@
}; };
}; };
# Here we can create our user # Here we can create our user
uses.users.${username} = { users.users.${username} = {
home = "/Users/${username}"; home = "/Users/${username}";
}; };