Merge pull request #297346 from codingCoffee/usbguard-fix

usbguard: fix policy enums
This commit is contained in:
Sandro 2024-03-27 18:52:43 +01:00 committed by GitHub
commit d6411ed8c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,7 +80,7 @@ in
}; };
implicitPolicyTarget = mkOption { implicitPolicyTarget = mkOption {
type = policy; type = types.enum [ "allow" "block" "reject" ];
default = "block"; default = "block";
description = lib.mdDoc '' description = lib.mdDoc ''
How to treat USB devices that don't match any rule in the policy. How to treat USB devices that don't match any rule in the policy.
@ -110,7 +110,7 @@ in
}; };
insertedDevicePolicy = mkOption { insertedDevicePolicy = mkOption {
type = policy; type = types.enum [ "block" "reject" "apply-policy" ];
default = "apply-policy"; default = "apply-policy";
description = lib.mdDoc '' description = lib.mdDoc ''
How to treat USB devices that are already connected after the daemon How to treat USB devices that are already connected after the daemon