modules: system: documentation: include POSIX man

This commit is contained in:
Bruno BELANYI 2021-06-12 12:42:55 +02:00
parent 23e5ddd7f3
commit 902539ea6d
1 changed files with 4 additions and 1 deletions

View File

@ -35,6 +35,9 @@ in
nixos.enable = cfg.nixos.enable;
};
environment.systemPackages = lib.optional cfg.man.linux pkgs.manpages;
environment.systemPackages = with pkgs; lib.optionals cfg.man.linux [
man-pages
man-pages-posix
];
};
}