nixos/home/env/fish.nix

14 lines
279 B
Nix
Raw Normal View History

{ ... }:
{
2023-03-29 15:59:39 +01:00
programs.fish = {
enable = true;
shellAbbrs = {
lg = "lazygit";
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
2023-03-29 15:59:39 +01:00
};
};
programs.keychain.enableFishIntegration = true;
programs.starship.enableFishIntegration = true;
}