nixos/programs/command-not-found: fix eval (#512102)

This commit is contained in:
yaya
2026-04-21 15:47:38 +00:00
committed by GitHub
@@ -61,7 +61,7 @@ in
config = lib.mkMerge [
{
programs.command-not-found = {
enable = lib.mkOptionDefault (builtins.pathExists cfg.dbPath);
enable = lib.mkDefault (builtins.pathExists cfg.dbPath);
dbPath = pkgs.path + "/programs.sqlite";
};
}