nix-dotfiles/home-manager/modules/fish.nix
2025-03-16 04:58:11 -06:00

16 lines
170 B
Nix

{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
starship
fzf
bat
eza
fd
ripgrep
];
programs.fish = {
enable = true;
};
}