nixos-config/home/fish.nix

14 lines
188 B
Nix

{ pkgs, ... }:
{
programs.fish = {
enable = true;
shellAliases = {
nix-fish = "nix-shell --command fish";
};
};
home.packages = with pkgs; [
bat
eza
];
}