summaryrefslogtreecommitdiff
path: root/hosts/common/documentation.nix
blob: 85de6f9c8f6954eca2006dfa955256ff8c77b671 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
	config,
	pkgs,
	...
}: {
	environment.systemPackages = with pkgs; [man-pages man-pages-posix];
	documentation = {
		dev.enable = true;
		man.enable = true;
	};
}