12 lines
243 B
Nix
12 lines
243 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# install gnuradio companion along with it's osmocom library
|
|
environment.systemPackages = with pkgs; [
|
|
(gnuradio.override {
|
|
extraPackages = with gnuradio.pkgs; [ osmosdr ];
|
|
})
|
|
hackrf
|
|
];
|
|
}
|