nix-config/modules/radio.nix
2022-05-25 19:27:42 +02:00

19 lines
234 B
Nix

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