This is the error I get when I include this in my Home Manager home.nix
file. I get a similar error for interactiveShellInit
.
I would like to run neofetch
whenever I open my terminal emulator, so I tried placing neofetch
in the options given above.
My bash settings are:
programs.bash = {
enable = true;
shellInit = "neofetch";
};
- I initially had my bash settings in a separate file that I imported into
home.nix
- the problem persists even when moving the option intohome.nix
. - Updated my home-manager channel to no effect
Running home-manager release 22.11 channel, and from search.nixos.org programs.bash.shellInit
and interactiveShellInit
are valid options.