From 3bbaf1e5d2b68df2433fa094dd468ca28917e6f2 Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Wed, 8 May 2024 04:00:00 -0400 Subject: [PATCH] Add comment block to `system/packages.nix` This is meant as documentation in case I want to enable `documentation.{man,nixos}` in the future, though I honestly doubt that I will. These would fix tools like `whatis`, but apparently `whatis` only seems to work on packages installed via `environment.systemPackages` that have man pages. --- system/packages.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/system/packages.nix b/system/packages.nix index 1239a76..63252de 100644 --- a/system/packages.nix +++ b/system/packages.nix @@ -9,7 +9,18 @@ */ # agenix.packages.x86_64-linux.default ]; - + + /* + documentation = { + nixos = { + includeAllModules = true; + }; + man = { + generateCaches = true; + }; + }; + */ + nixpkgs = { config = { allowUnfree = true;