Files
nixos/home/fish.nix
2024-09-04 07:56:38 +02:00

11 lines
179 B
Nix

{ config, pkgs, ... }:
{
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting # Disable greeting
alias cd z # Zoxide instead of cd
'';
};
}