From 115e6e7299bd52b84fe4dc5315ef5758274b8b61 Mon Sep 17 00:00:00 2001 From: Artturin Date: Tue, 16 Nov 2021 18:27:38 +0200 Subject: [PATCH] nixos/profiles/minimal: disable command-not-found reduces size by about 1M --- nixos/modules/profiles/minimal.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix index f044e6f39ea5..e79b92723841 100644 --- a/nixos/modules/profiles/minimal.nix +++ b/nixos/modules/profiles/minimal.nix @@ -14,4 +14,6 @@ with lib; documentation.enable = mkDefault false; documentation.nixos.enable = mkDefault false; + + programs.command-not-found.enable = mkDefault false; }