13 lines
269 B
Nix
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;
|
|
};
|
|
}
|