about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/hardware/rtl-sdr.nix
blob: 7f462005f15704f33df23e4c0d1f7a53adc6ec6b (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
{ config, lib, pkgs, ... }:

let
  cfg = config.hardware.rtl-sdr;

in {
  options.hardware.rtl-sdr = {
    enable = lib.mkOption {
      type = lib.types.bool;
      default = false;
      description = lib.mdDoc ''
        Enables rtl-sdr udev rules, ensures 'plugdev' group exists, and blacklists DVB kernel modules.
        This is a prerequisite to using devices supported by rtl-sdr without being root, since rtl-sdr USB descriptors will be owned by plugdev through udev.
       '';
    };
  };

  config = lib.mkIf cfg.enable {
    boot.blacklistedKernelModules = [ "dvb_usb_rtl28xxu" "e4000" "rtl2832" ];
    services.udev.packages = [ pkgs.rtl-sdr ];
    users.groups.plugdev = {};
  };
}