1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/man/no-manpath.nix
Damien Cassou 472ca211ca
man: support building manual page index cache
The apropos software is useful to get a list of manpages matching a
description or to get a list of all manpages. The latter feature is
used by Emacs to get manpage completion (`M-x man`).

To have apropos working, a database of all available manpages must be
built with mandb. This is what this commits does.

A similar change was done for NixOS:
edc6a76cc0
2020-09-13 20:52:08 +02:00

14 lines
176 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.man = { enable = true; };
nmt.script = ''
assertPathNotExists home-files/.manpath
'';
};
}