universe/host/services/command-not-found.nix
2025-03-14 16:40:36 +00:00

13 lines
269 B
Nix

{
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;
};
}