12 lines
249 B
Nix
12 lines
249 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.bash = {
|
|
enable = true;
|
|
shellAliases = { lg = "lazygit"; };
|
|
};
|
|
programs.keychain.enableBashIntegration = true;
|
|
programs.starship.enableBashIntegration = true;
|
|
programs.nix-index.enableBashIntegration = true;
|
|
}
|