summary refs log tree commit diff
path: root/nixos/modules/hardware/usb-wwan.nix
blob: 2d20421586a7929238064d43f8887aad1ef3913f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ config, lib, pkgs, ... }:

with lib;

{
  ###### interface

  options = {

    hardware.usbWwan = {
      enable = mkOption {
        type = types.bool;
        default = false;
        description = ''
          Enable this option to support USB WWAN adapters.
        '';
      };
    };
  };

  ###### implementation

  config = mkIf config.hardware.usbWwan.enable {
    services.udev.packages = with pkgs; [ usb-modeswitch-data ];
  };
}