universe/host/services/command-not-found.nix

13 lines
269 B
Nix
Raw Normal View History

2025-03-14 16:40:36 +00:00
{
inputs,
system,
config,
lib,
...
}: {
config = lib.mkIf config.universe.services.command-not-found.enable {
programs.command-not-found.enable = true;
programs.command-not-found.dbPath = inputs.programsdb.packages.${system}.programs-sqlite;
};
}