nixos-config/home/fish.nix
2024-05-03 00:28:40 -04:00

17 lines
279 B
Nix

{ pkgs, ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = "set -g -x GPG_TTY (tty)";
shellAliases = {
cat = "bat";
ls = "eza";
nix-fish = "nix-shell --command fish";
};
};
home.packages = with pkgs; [
bat
eza
];
}