{ pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    lsd
    fzf
    fishPlugins.done
    fishPlugins.fzf-fish
    fishPlugins.tide
  ];

  programs.fish = {
    enable = true;
    interactiveShellInit = ''
      set fish_greeting
      function fish_command_not_found
        echo "Command not found"
      end
    '';
    shellAliases = {
      ls = "lsd --icon=never";
      l = "ls -l";
      ll = "ls -la";
      vim = "nvim";
      grep = "grep --color=auto";
    };
  };
}