Start of an RTL-SDR module
This commit is contained in:
parent
82c0404c4f
commit
0e9a2388bf
4 changed files with 40 additions and 0 deletions
17
system/modules/rtlsdr.nix
Normal file
17
system/modules/rtlsdr.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
rtl-sdr
|
||||
];
|
||||
|
||||
services.udev.packages = with pkgs; [
|
||||
rtl-sdr
|
||||
];
|
||||
|
||||
# blacklist for rtl-sdr
|
||||
boot.blacklistedKernelModules = [
|
||||
"dvb_usb_rtl28xxu"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue