nixos-config/home/fish.nix

14 lines
188 B
Nix
Raw Normal View History

2024-05-20 17:59:18 +00:00
{ pkgs, ... }:
{
programs.fish = {
enable = true;
shellAliases = {
nix-fish = "nix-shell --command fish";
};
};
home.packages = with pkgs; [
bat
eza
];
}