From 557bc492f4eb99b15342be26119be9b8d4338e02 Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 30 May 2023 10:01:49 +0200 Subject: [PATCH] disable docs everywhere --- nixos/common/common.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/common/common.nix b/nixos/common/common.nix index a61ac68..0a589b6 100644 --- a/nixos/common/common.nix +++ b/nixos/common/common.nix @@ -75,4 +75,15 @@ PermitRootLogin = lib.mkDefault "no"; }; }; + + # Debloat + documentation = { + enable = false; + doc.enable = false; + man.enable = false; + info.enable = false; + nixos.enable = false; + }; + + system.disableInstallerTools = lib.mkDefault true; }