Skip to content

Commit

Permalink
More docs cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianBingman committed Dec 20, 2024
1 parent 10da7ab commit fde30fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nixos/modules/services/hardware/usbipd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ let
options = {
productid = mkOption {
type = types.str;
description = "The product id of the device";
};
vendorid = mkOption {
type = types.str;
description = "The vendor id of the device";
};
};
};
Expand All @@ -30,10 +32,10 @@ in
type = types.listOf device;
default = [ ];
description = "List of USB devices to watch and automatically export.";
example = {
example = [{
productid = "xxxx";
vendorid = "xxxx";
};
}];
};
openFirewall = mkOption {
type = types.bool;
Expand Down

0 comments on commit fde30fe

Please sign in to comment.