nixos-config/sdr.nix

13 lines
177 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
hackrf
urh
usbutils
];
services.udev.packages = with pkgs; [
hackrf
rtl-sdr
];
}