nix/module/common/Bash.nix

11 lines
263 B
Nix
Raw Normal View History

2024-04-04 13:51:06 +03:00
{ lib, style, ... }: let
bash = import ./bash/Bash.nix { style = style; };
2024-04-03 06:21:29 +03:00
in {
programs.bash.interactiveShellInit = bash.config;
environment.shellAliases = lib.mkForce {};
environment.variables = {
BASH_PATH = ./bash;
TERM = "xterm-256color";
};
}