Files
nixos-config/home/shell/fish/default.nix
2023-11-27 10:20:54 -04:00

15 lines
228 B
Nix

{
programs.fish = {
enable = true;
plugins = [
# Enable a plugin (here grc for colorized command output) from nixpkgs
{
name = "grc";
src = pkgs.fishPlugins.grc.src;
}
];
};
}