mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
usbguard: fix policy enums
The available policies for `InsertedDevicePolicy` and `ImplicitPolicyTarget` differ from the defined policy enum. This change is to prevent users from configuring incorrect policies for `usbguard` Related `usbguard` documentation https://usbguard.github.io/documentation/configuration.html Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
parent
8e9fa2ddca
commit
99c0c32a49
@ -80,7 +80,7 @@ in
|
||||
};
|
||||
|
||||
implicitPolicyTarget = mkOption {
|
||||
type = policy;
|
||||
type = types.enum [ "allow" "block" "reject" ];
|
||||
default = "block";
|
||||
description = lib.mdDoc ''
|
||||
How to treat USB devices that don't match any rule in the policy.
|
||||
@ -110,7 +110,7 @@ in
|
||||
};
|
||||
|
||||
insertedDevicePolicy = mkOption {
|
||||
type = policy;
|
||||
type = types.enum [ "block" "reject" "apply-policy" ];
|
||||
default = "apply-policy";
|
||||
description = lib.mdDoc ''
|
||||
How to treat USB devices that are already connected after the daemon
|
||||
|
Loading…
Reference in New Issue
Block a user