Files
dotfiles/home-modules/bash.nix
Lennart J. Kurzweg (Nx2) edda49ee66 25.11
2025-12-03 01:59:12 +01:00

29 lines
566 B
Nix

{ pkgs, ... }:
{
programs.bash = let
init = /* bash */ ''
source $HOME/.nix-profile/etc/profile.d/hm-session-vars.sh
'';
in {
enable = true;
shellAliases = {
ll = "ls -l";
la = "ls -a";
lla = "ls -la";
};
shellOptions = [
"histappend"
"checkwinsize"
"extglob"
"globstar"
"checkjobs"
];
enableCompletion = false;
} // pkgs.lib.mkIf (pkgs.version != "24.05") {
shellInit = init;
} // pkgs.lib.mkIf (pkgs.version != "25.11") {
profileExtra = init;
};
}