chore: Disable command-not-found by default

Unfortunately command-not-found only works for channels and doesn't have
first-class support for flakes yet, and nix-index takes forever to build
the database on slower machines, so I'd rather just disable this by
default.
This commit is contained in:
Donovan Glover 2024-04-06 12:13:01 -04:00
parent 7649c658b7
commit 0033dfceb0
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -218,6 +218,8 @@ in
(pass.withExtensions (ext: with ext; [ pass-otp ]))
];
programs.command-not-found.enable = false;
environment.defaultPackages = [ ];
};
}