nix-config/modules/radio.nix

19 lines
235 B
Nix

{ lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gnuradio
gqrx
cubicsdr
libusb1
rtl-sdr
hackrf
soapyhackrf
];
hardware = {
rtl-sdr.enable = true;
hackrf.enable = true;
};
}