From 2998dc7bff916d1a55c72628915229a78526ec8f Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Fri, 17 Jun 2022 22:56:22 +0100 Subject: [PATCH] nixos/common: Disable command-not-found by default --- nixos/modules/common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/common.nix b/nixos/modules/common.nix index 1f7b25c..bbf9868 100644 --- a/nixos/modules/common.nix +++ b/nixos/modules/common.nix @@ -120,6 +120,8 @@ in # This will enable generating completions at build time and prevent home-manager fish from generating them # locally fish.enable = mkDefault true; + # TODO: This is expecting to look up the channel for the database... + command-not-found.enable = mkDefault false; }; services = {