nix-dotfiles/modules/fish.nix
2025-03-13 14:50:27 -06:00

14 lines
170 B
Nix

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