11 lines
179 B
Nix
11 lines
179 B
Nix
{
|
|
programs.bash = {
|
|
enable = true;
|
|
enableVteIntegration = true;
|
|
shellAliases = { ".." = "cd .."; };
|
|
|
|
bashrcExtra = ''
|
|
source $HOME/.profile
|
|
'';
|
|
};
|
|
}
|