nixos/command-not-found: don't require lib.mkForce to set dbPath

This commit is contained in:
d-r-a-b
2026-05-19 10:26:26 -04:00
parent d233902339
commit f99d745319
@@ -62,7 +62,7 @@ in
{
programs.command-not-found = {
enable = lib.mkDefault (builtins.pathExists cfg.dbPath);
dbPath = pkgs.path + "/programs.sqlite";
dbPath = lib.mkDefault (pkgs.path + "/programs.sqlite");
};
}