programs.fish.completions

Custom fish completions. For more information see https://fishshell.com/docs/current/completions.html.

Type
attribute set of (strings concatenated with "\n" or (submodule))
Default
{ }
Example
{
  my-prog = ''
    complete -c myprog -s o -l output
  '';

  my-app = {
    body = ''
      complete -c myapp -s -v
    '';
  };
}
Declared
<home-manager/modules/programs/fish.nix>