Fix error in home.nix's programs.bash. Home Manager's programs.bash does not have promptInit. Use InitExtra instead

This commit is contained in:
Leo Alho 2026-07-28 13:50:42 +03:00
parent 551f5c913a
commit e5e24c7976

View file

@ -110,7 +110,7 @@
#############################################################################
programs.bash = {
enable = true;
promptInit = builtins.readFile ./dotfiles/bash_prompt;
initExtra = builtins.readFile ./dotfiles/bash_prompt;
shellAliases = {
c = "clear";
gm = "git checkout master && git pull";