10 lines
240 B
Nix
10 lines
240 B
Nix
{ lib, style, util, pkgs, ... } @args: let
|
|
bash = import ./bash/Init.nix args;
|
|
in {
|
|
programs.bash.interactiveShellInit = bash.config;
|
|
environment.shellAliases = lib.mkForce {};
|
|
environment.variables = {
|
|
TERM = "xterm-256color";
|
|
};
|
|
}
|