15 lines
331 B
Nix
15 lines
331 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;
|
|
}
|