From 32f75a0f2af55b50061629fd4e51221f15ada457 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 12 Aug 2023 13:13:14 +0300 Subject: nixos/install-tools: Add manpages to packages instead of seperating them Since each such `nixos-*` tool has it's own derivation, exposed in pkgs, There is no point in separating the manuals from the packages. If someone wishes to have the tools without the manuals, they can use meta.outputsToInstall to disable the installation of the manpages of these packages. This Fixes #244450. --- nixos/release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos/release.nix') diff --git a/nixos/release.nix b/nixos/release.nix index 93ebe000fc0..2d7661e935f 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -143,7 +143,7 @@ in rec { manualHTML = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manualHTML); manual = manualHTML; # TODO(@oxij): remove eventually manualEpub = (buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manualEpub)); - manpages = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.manpages); + manpages = buildFromConfig ({ ... }: { }) (config: config.system.build.manual.configuration-manual); options = (buildFromConfig ({ ... }: { }) (config: config.system.build.manual.optionsJSON)).x86_64-linux; -- cgit 1.4.1