nixos-config/sdr.nix

14 lines
177 B
Nix
Raw Normal View History

2026-01-08 19:41:55 -08:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
hackrf
urh
usbutils
];
services.udev.packages = with pkgs; [
hackrf
rtl-sdr
];
}