nix-config/modules/radio.nix

20 lines
234 B
Nix
Raw Normal View History

2022-05-25 19:27:42 +02:00
{ lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnuradio
gqrx
cubicsdr
libusb
rtl-sdr
hackrf
soapyhackrf
];
hardware = {
rtl-sdr.enable = true;
hackrf.enable = true;
};
}