nixos-config/sets/documentation.nix

9 lines
156 B
Nix
Raw Normal View History

2024-01-24 04:03:50 +00:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ man-pages ];
documentation = {
dev.enable = true;
man.generateCaches = true;
};
}