15 lines
329 B
Nix
15 lines
329 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
shellAbbrs = {
|
|
lg = "lazygit";
|
|
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
|
|
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
|
|
};
|
|
};
|
|
programs.keychain.enableFishIntegration = true;
|
|
programs.starship.enableFishIntegration = true;
|
|
}
|