mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-13 20:30:02 +00:00
fix: user shell path handling
Properly detect the binary name (not just /nix/store/...-bash, but include the .../bin/bash), and use the symlinked name which also appears in /etc/shells.
This commit is contained in:
parent
74ab0227ee
commit
888533c35f
1 changed files with 11 additions and 1 deletions
|
@ -24,6 +24,14 @@ let
|
|||
deletedUsers = filter (n: isDeleted cfg.users n) cfg.knownUsers;
|
||||
|
||||
packageUsers = filterAttrs (_: u: u.packages != []) cfg.users;
|
||||
|
||||
# convert a valid argument to user.shell into a string that points to a shell
|
||||
# executable. Logic copied from modules/system/shells.nix.
|
||||
shellPath = v:
|
||||
if types.shellPackage.check v
|
||||
then "/run/current-system/sw${v.shellPath}"
|
||||
else v;
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
|
@ -158,12 +166,14 @@ in
|
|||
dscl . -create '/Users/${v.name}' IsHidden ${if v.isHidden then "1" else "0"}
|
||||
dscl . -create '/Users/${v.name}' RealName '${v.description}'
|
||||
dscl . -create '/Users/${v.name}' NFSHomeDirectory '${v.home}'
|
||||
dscl . -create '/Users/${v.name}' UserShell '${v.shell}'
|
||||
${optionalString v.createHome "createhomedir -cu '${v.name}'"}
|
||||
else
|
||||
if [ "$u" -ne ${toString v.uid} ]; then
|
||||
echo "[1;31mwarning: existing user '${v.name}' has unexpected uid $u, skipping...[0m" >&2
|
||||
fi
|
||||
|
||||
# Always set the shell path, in case it was updated
|
||||
dscl . -create '/Users/${v.name}' UserShell ${lib.escapeShellArg (shellPath v.shell)}
|
||||
fi
|
||||
'') createdUsers}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue