mirror of
https://github.com/nix-community/home-manager
synced 2024-11-13 06:39:44 +01:00
59087dc8b6
The release notes used to be an appendix in the manual. After converting to markdown that appendix got lost. This commit reintroduces the release notes into the manual.
20 lines
583 B
Nix
20 lines
583 B
Nix
{ ... }:
|
|
|
|
{
|
|
config = {
|
|
manual = {
|
|
html.enable = true;
|
|
manpages.enable = true;
|
|
json.enable = true;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-path/share/doc/home-manager/index.xhtml
|
|
assertFileExists home-path/share/doc/home-manager/options.html
|
|
assertFileExists home-path/share/doc/home-manager/options.json
|
|
assertFileExists home-path/share/doc/home-manager/release-notes.xhtml
|
|
assertFileExists home-path/share/man/man1/home-manager.1
|
|
assertFileExists home-path/share/man/man5/home-configuration.nix.5
|
|
'';
|
|
};
|
|
}
|