packagekit: use test_nop backend by default

nix backend is broken and this is causing the nixos test to
fail
This commit is contained in:
Robert Scott
2024-01-30 20:41:15 +00:00
parent 13f59f80b9
commit 19b3ab3fe4
+2 -2
View File
@@ -13,7 +13,7 @@ let
(iniFmt.generate "PackageKit.conf" (recursiveUpdate
{
Daemon = {
DefaultBackend = "nix";
DefaultBackend = "test_nop";
KeepCache = false;
};
}
@@ -35,7 +35,7 @@ let
in
{
imports = [
(mkRemovedOptionModule [ "services" "packagekit" "backend" ] "Always set to Nix.")
(mkRemovedOptionModule [ "services" "packagekit" "backend" ] "Always set to test_nop, Nix backend is broken see #177946.")
];
options.services.packagekit = {