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:
parent
db8b248b7f
commit
3bbaf1e5d2
1 changed files with 12 additions and 1 deletions
|
@ -10,6 +10,17 @@
|
||||||
# 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;
|
||||||
|
|
Loading…
Reference in a new issue