nix-config/modules/radio.nix

20 lines
235 B
Nix
Raw Normal View History

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