2024-04-03 06:21:29 +03:00
|
|
|
{ lib, config, ... }: let
|
|
|
|
bash = import ./bash/Bash.nix { config = config; };
|
|
|
|
in {
|
|
|
|
programs.bash.interactiveShellInit = bash.config;
|
2024-03-23 14:50:41 +03:00
|
|
|
environment.shellAliases = lib.mkForce {};
|
2024-03-21 22:02:12 +03:00
|
|
|
environment.variables = {
|
2024-03-23 14:50:41 +03:00
|
|
|
BASH_PATH = ./bash;
|
2024-03-21 22:02:12 +03:00
|
|
|
TERM = "xterm-256color";
|
|
|
|
};
|
2024-03-04 00:34:39 +03:00
|
|
|
}
|