Files
nix-files/hosts/common/programs/haredoc.nix

9 lines
240 B
Nix

# use like `haredoc bufio::read_line`
{ pkgs, ... }:
{
sane.programs.haredoc = {
sandbox.whitelistPwd = true; #< search for function documentation below the current directory
env.HAREPATH = "${pkgs.hare}/src/hare/stdlib";
};
}