about summary refs log tree commit diff
path: root/nixos/tests/installed-tests/fwupd.nix
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-01-25 13:36:37 +0800
committerNick Cao <nickcao@nichi.co>2023-01-25 13:37:00 +0800
commitd469096dbd9ad40efeea430762f82b70a72f2d55 (patch)
treef3e044f6bf155e4c49e33b1c503ef0598a2df8b8 /nixos/tests/installed-tests/fwupd.nix
parent343b5c8134ac2387088f7662b2c4938361a714f1 (diff)
nixos/fwupd: do no use renamed options in tests
Diffstat (limited to 'nixos/tests/installed-tests/fwupd.nix')
-rw-r--r--nixos/tests/installed-tests/fwupd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/installed-tests/fwupd.nix b/nixos/tests/installed-tests/fwupd.nix
index 65614e2689d8e..c095a50dc8367 100644
--- a/nixos/tests/installed-tests/fwupd.nix
+++ b/nixos/tests/installed-tests/fwupd.nix
@@ -5,7 +5,7 @@ makeInstalledTest {
 
   testConfig = {
     services.fwupd.enable = true;
-    services.fwupd.disabledPlugins = lib.mkForce []; # don't disable test plugin
+    services.fwupd.daemonSettings.DisabledPlugins = lib.mkForce [ ]; # don't disable test plugin
     services.fwupd.enableTestRemote = true;
   };
 }