nixos/home/env/fish.nix

14 lines
279 B
Nix

{ ... }:
{
programs.fish = {
enable = true;
shellAbbrs = {
lg = "lazygit";
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
};
};
programs.keychain.enableFishIntegration = true;
programs.starship.enableFishIntegration = true;
}