20 lines
235 B
Nix
20 lines
235 B
Nix
{ ... }:
|
|
{
|
|
|
|
programs = {
|
|
bash = {
|
|
enable = true;
|
|
shellAliases = {
|
|
ls = "eza";
|
|
};
|
|
};
|
|
|
|
starship = {
|
|
enableBashIntegration = true;
|
|
};
|
|
|
|
};
|
|
|
|
# programs.bash.blesh.enable = true;
|
|
|
|
}
|