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.
This commit is contained in:
Whovian NTSN 2024-05-08 04:00:00 -04:00
parent db8b248b7f
commit 3bbaf1e5d2
1 changed files with 12 additions and 1 deletions

View File

@ -9,7 +9,18 @@
*/ */
# agenix.packages.x86_64-linux.default # agenix.packages.x86_64-linux.default
]; ];
/*
documentation = {
nixos = {
includeAllModules = true;
};
man = {
generateCaches = true;
};
};
*/
nixpkgs = { nixpkgs = {
config = { config = {
allowUnfree = true; allowUnfree = true;