nixos-config/sdr.nix
2026-01-10 11:01:38 -08:00

13 lines
177 B
Nix

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