nix/module/common/Bash.nix

7 lines
237 B
Nix
Raw Normal View History

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