nix-conf/system/bash.nix

8 lines
237 B
Nix
Raw Normal View History

2024-10-27 13:34:49 -04:00
{lib, ...}: {
2024-10-18 23:42:11 -04:00
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'';
}