nix/module/common/Bash.nix

10 lines
240 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ lib, style, util, pkgs, ... } @args: let
bash = import ./bash/Init.nix args;
2024-04-03 06:21:29 +03:00
in {
programs.bash.interactiveShellInit = bash.config;
environment.shellAliases = lib.mkForce {};
environment.variables = {
2024-04-06 03:03:58 +03:00
TERM = "xterm-256color";
};
}