nix-conf/system/bash.nix
2024-10-27 12:34:49 -05:00

8 lines
237 B
Nix

{lib, ...}: {
programs.bash = {
completion.enable = true;
promptInit = ''PS1="[\u \W] \[\e[32;1m\]\$\[\e[0m\] "'';
};
environment.etc.bashrc.text = lib.mkAfter ''[ -f ~/.config/bash/bashrc ] && . ~/.config/bash/bashrc'';
}