Files
nixos-config/modules/home/bash.nix
2026-04-29 00:52:42 +09:00

11 lines
156 B
Nix

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