11 lines
156 B
Nix
11 lines
156 B
Nix
{ ... }:
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
initExtra = ''
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
'';
|
|
};
|
|
}
|