nix-conf/system/bash.nix
2024-10-27 01:36:51 -05:00

10 lines
240 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'';
}