summaryrefslogtreecommitdiff
path: root/modules/radio.nix
blob: 2a82cc36e8a4c3269fe6c0fbb0cc01b2622369a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    gnuradio
    gqrx
    cubicsdr

    libusb1
    rtl-sdr
    hackrf
    soapyhackrf
  ];

  hardware = {
    rtl-sdr.enable = true;
    hackrf.enable = true;
  };
}