nix/module/common/Bash.nix

10 lines
262 B
Nix
Raw Normal View History

{ lib, ... }: {
2024-03-08 22:40:38 +03:00
programs.bash.interactiveShellInit = "source /etc/bash/Bashrc.sh";
environment.etc.bash.source = ./bash;
environment.shellAliases = lib.mkForce {};
environment.variables = {
BASH_PATH = "/etc/bash";
TERM = "xterm-256color";
};
}