nixos/home/env/bash.nix

16 lines
382 B
Nix

{ ... }:
{
programs.bash = {
enable = true;
shellAliases = {
lg = "lazygit";
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
};
};
programs.keychain.enableBashIntegration = true;
programs.starship.enableBashIntegration = true;
programs.nix-index.enableBashIntegration = true;
}