nixos-config/home/fish.nix

17 lines
279 B
Nix
Raw Normal View History

2024-03-02 03:13:17 +00:00
{ pkgs, ... }:
{
2023-04-30 06:59:00 +00:00
programs.fish = {
enable = true;
interactiveShellInit = "set -g -x GPG_TTY (tty)";
shellAliases = {
cat = "bat";
2023-09-10 00:51:29 +00:00
ls = "eza";
2023-04-30 06:59:00 +00:00
nix-fish = "nix-shell --command fish";
};
};
2024-03-02 03:13:17 +00:00
home.packages = with pkgs; [
bat
eza
];
2023-04-30 06:59:00 +00:00
}