2024-03-28 12:17:49 -08:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs.bash = {
|
|
|
|
enable = true;
|
2024-04-07 19:13:37 -08:00
|
|
|
shellAliases = {
|
2024-04-12 08:05:18 -08:00
|
|
|
ls = "eza";
|
2024-04-07 19:13:37 -08:00
|
|
|
};
|
2024-03-28 12:17:49 -08:00
|
|
|
initExtra = ''
|
|
|
|
export EDITOR=emacs\ -nw
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|