12 lines
134 B
Nix
12 lines
134 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
rtl-sdr = {
|
|
enable = true;
|
|
};
|
|
hackrf = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|