Skip to content

Commit

Permalink
Merge pull request #117551 from TredwellGit/nixos/rtl-sdr
Browse files Browse the repository at this point in the history
nixos/rtl-sdr: blacklist DVB kernel modules
  • Loading branch information
SuperSandro2000 committed Apr 12, 2021
2 parents 2868749 + 6ddfee9 commit 311ceed
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions nixos/modules/hardware/rtl-sdr.nix
Expand Up @@ -6,14 +6,13 @@ let
in {
options.hardware.rtl-sdr = {
enable = lib.mkEnableOption ''
Enables rtl-sdr udev rules and ensures 'plugdev' group exists.
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.
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 = {};
};
Expand Down

0 comments on commit 311ceed

Please sign in to comment.