about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authormaxine <35892750+amaxine@users.noreply.github.com>2024-02-11 21:15:52 +0100
committerGitHub <noreply@github.com>2024-02-11 21:15:52 +0100
commit9b52568c861886cb778a1e706f263393918ba996 (patch)
tree436f1817b93f3d9d634d5286a4d7b50fa31d4b8d /nixos
parent7774ef530fa9df075c208c523c16cda6f8f48aba (diff)
parent4a4904c2b223351f85cee3127180406edce76eb3 (diff)
downloadnixlib-9b52568c861886cb778a1e706f263393918ba996.tar
nixlib-9b52568c861886cb778a1e706f263393918ba996.tar.gz
nixlib-9b52568c861886cb778a1e706f263393918ba996.tar.bz2
nixlib-9b52568c861886cb778a1e706f263393918ba996.tar.lz
nixlib-9b52568c861886cb778a1e706f263393918ba996.tar.xz
nixlib-9b52568c861886cb778a1e706f263393918ba996.tar.zst
nixlib-9b52568c861886cb778a1e706f263393918ba996.zip
Merge pull request #288122 from amaxine/fwupd-internal-tests
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/hardware/fwupd.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/services/hardware/fwupd.nix b/nixos/modules/services/hardware/fwupd.nix
index ebb6fa09aadb..8a9e38d0547b 100644
--- a/nixos/modules/services/hardware/fwupd.nix
+++ b/nixos/modules/services/hardware/fwupd.nix
@@ -123,6 +123,7 @@ in {
             };
 
             TestDevices = mkOption {
+              internal = true;
               type = types.bool;
               default = false;
               description = lib.mdDoc ''
@@ -155,6 +156,7 @@ in {
     (mkRenamedOptionModule [ "services" "fwupd" "blacklistPlugins"] [ "services" "fwupd" "daemonSettings" "DisabledPlugins" ])
     (mkRenamedOptionModule [ "services" "fwupd" "disabledDevices" ] [ "services" "fwupd" "daemonSettings" "DisabledDevices" ])
     (mkRenamedOptionModule [ "services" "fwupd" "disabledPlugins" ] [ "services" "fwupd" "daemonSettings" "DisabledPlugins" ])
+    (mkRemovedOptionModule [ "services" "fwupd" "enableTestRemote" ] "This option was removed after being removed upstream. It only provided a method for testing fwupd functionality, and should not have been exposed for use outside of nix tests.")
   ];
 
   ###### implementation