nixos/home/env/bash.nix

12 lines
249 B
Nix
Raw Normal View History

{ ... }:
{
programs.bash = {
enable = true;
2023-05-16 13:05:40 +01:00
shellAliases = { lg = "lazygit"; };
};
programs.keychain.enableBashIntegration = true;
programs.starship.enableBashIntegration = true;
programs.nix-index.enableBashIntegration = true;
}