Files
nixos-config/modules/home/bash.nix
2026-05-18 13:09:40 +09:00

11 lines
173 B
Nix

{ ... }:
{
programs.bash = {
enable = true;
enableCompletion = true;
initExtra = ''
export PATH="$HOME/.cargo/bin:$HOME/.local/bin:$PATH"
'';
};
}