nix/module/common/Bash.nix

9 lines
216 B
Nix
Raw Normal View History

{ lib, ... }: {
programs.bash.interactiveShellInit = "source $BASH_PATH/Bashrc.sh";
environment.shellAliases = lib.mkForce {};
environment.variables = {
BASH_PATH = ./bash;
TERM = "xterm-256color";
};
}