{ pkgs, lib, ... }: { home.packages = with pkgs; [ grc ]; programs.fish = { enable = true; plugins = [ { name = "grc"; src = pkgs.fishPlugins.grc.src; } { name = "autopair"; src = pkgs.fishPlugins.autopair; } ]; shellInit = lib.concatStringsSep "\n" [ "bind \b backward-kill-word" ]; interactiveShellInit = lib.concatStringsSep "\n" [ "neofetch" ]; }; }