-
I recently switched to nushell and my |
Beta Was this translation helpful? Give feedback.
Answered by
twpayne
Jul 10, 2023
Replies: 1 comment 2 replies
-
See https://github.com/twpayne/chezmoi/blob/master/pkg/shell/shell_posix.go#L14. chezmoi checks the following in order, using the first value that it finds:
Are you sure you changed your shell with |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
J-Kappes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://github.com/twpayne/chezmoi/blob/master/pkg/shell/shell_posix.go#L14.
chezmoi checks the following in order, using the first value that it finds:
$SHELL
environment variable.getpwnam_r
library call.getent passwd $USER
./etc/passwd
.Are you sure you changed your shell with
chsh
?