Commit 19b3ab3f authored by Robert Scott's avatar Robert Scott
Browse files

packagekit: use test_nop backend by default

nix backend is broken and this is causing the nixos test to
fail
parent 13f59f80
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 = {