From 2b5bfb8e1445d7a8a93e4321ec5ce318415eb2bc Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Mon, 12 May 2025 10:53:19 +0200 Subject: [PATCH] chore: docs cleanup --- modules/packages/module.nix | 2 +- modules/system/nix/documentation.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/packages/module.nix b/modules/packages/module.nix index 23b52ec..70b56b6 100644 --- a/modules/packages/module.nix +++ b/modules/packages/module.nix @@ -9,7 +9,7 @@ inherit (pkgs) calc # Calculator device - coreutils-full # All of the GNU coreutils + # coreutils-full # All of the GNU coreutils curl # I sometimes need to curl stuff git # take a guess inetutils # internet stuff I need/want on every system. diff --git a/modules/system/nix/documentation.nix b/modules/system/nix/documentation.nix index b3afd60..20187a4 100644 --- a/modules/system/nix/documentation.nix +++ b/modules/system/nix/documentation.nix @@ -3,7 +3,7 @@ documentation = { # whether to enable the `doc` output of packages # generally in ${pkg}/share/ as plaintext or html - # # can shave off a few megabytes + # can shave off a few megabytes doc.enable = false; # whether to install the `info` command and the `info` @@ -22,7 +22,7 @@ generateCaches = false; # Whether to enable mandoc as the default man page viewer. - mandoc.enable = false; # my default manpage viewer is Neovim, so this isn't necessary + mandoc.enable = false; # my default manpage viewer is helix, so this isn't necessary }; }; }