mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-08 19:51:14 +00:00
12 lines
151 B
Nix
12 lines
151 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
hardware.rtl-sdr.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
chirp
|
|
soapysdr
|
|
soapyrtlsdr
|
|
];
|
|
|
|
}
|