summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2021-11-16 18:27:38 +0200
committerArtturin <Artturin@artturin.com>2021-11-16 18:27:38 +0200
commit115e6e7299bd52b84fe4dc5315ef5758274b8b61 (patch)
tree9515fd3b9ac1e7b0549867ac3c07343c96c14334 /nixos
parentb464f0573e4e67978ed00a4bbab567a9bd08fc3c (diff)
downloadnixpkgs-115e6e7299bd52b84fe4dc5315ef5758274b8b61.tar
nixpkgs-115e6e7299bd52b84fe4dc5315ef5758274b8b61.tar.gz
nixpkgs-115e6e7299bd52b84fe4dc5315ef5758274b8b61.tar.bz2
nixpkgs-115e6e7299bd52b84fe4dc5315ef5758274b8b61.tar.lz
nixpkgs-115e6e7299bd52b84fe4dc5315ef5758274b8b61.tar.xz
nixpkgs-115e6e7299bd52b84fe4dc5315ef5758274b8b61.tar.zst
nixpkgs-115e6e7299bd52b84fe4dc5315ef5758274b8b61.zip
nixos/profiles/minimal: disable command-not-found
reduces size by about 1M
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/profiles/minimal.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix
index f044e6f39ea..e79b9272384 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;
 }