From a34d5a110adfd2b921b6491b4485089e73d7b02d Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Fri, 25 Dec 2020 16:41:48 +0100 Subject: [PATCH] Disable command-not-found --- modules/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/default.nix b/modules/default.nix index dbbddc3..d911241 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -52,6 +52,9 @@ programs.zsh.enable = true; users.defaultUserShell = pkgs.zsh; + # command-not-found does not work without channels + programs.command-not-found.enable = false; + # Sane swapping boot.kernel.sysctl."vm.swapiness" = 10;