From 0f851a3d0f66b723014efffd8b6864490adc5a8a Mon Sep 17 00:00:00 2001 From: Nihal <121309701+nihalxkumar@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:09:22 +0530 Subject: [PATCH] misc/50_qubes.conf: disable kernelhints when dom0 kernel is used This is required because without this `apt` in Debian prompts a false positive to reboot when a new kernel is available. When in fact it's just that running kernel is different from the one in `/boot`. --- misc/50_qubes.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/50_qubes.conf b/misc/50_qubes.conf index 80ee11ba8..f9f6d9a55 100644 --- a/misc/50_qubes.conf +++ b/misc/50_qubes.conf @@ -1,2 +1,3 @@ $nrconf{override_rc}->{q(^qubes-core-agent-linux)} = 0; $nrconf{override_rc}->{q(^qubes-gui-agent)} = 0; +$nrconf{kernelhints} = 0 unless -f "/boot/vmlinuz-$(uname -r)";