ccadek / nixos-dotfiles

MIT License
0 stars 0 forks source link

Fish shells that have been added via fishPlugins will not load #2

Closed ccadek closed 1 month ago

ccadek commented 1 month ago

The fish plugins jorgebucaran/autopair.fish, jorgebucaran/hydro and wfxr/forgit are loaded as nix packages.

Minimal configuration

programs.fish = [
  plugins = [
    { name = "autopair"; src = pkgs.fishPlugins.autopair; }
    { name = "hydro"; src = pkgs.fishPlugins.hydro; }
    { name = "forgit"; src = pkgs.fishPlugins.forgit; }
  ];
];