add software for my new hackrf pro #42

Merged
aaron merged 3 commits from feature/add_hackrf into main 2026-04-24 20:09:31 +02:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 69ca1dbaca - Show all commits

View File

@@ -8,6 +8,7 @@
../../modules/nixos/certificates.nix
../../modules/nixos/drives.nix
../../modules/nixos/gnupg.nix
../../modules/nixos/gnuradio.nix
../../modules/nixos/graphics.nix
../../modules/nixos/greetd.nix
../../modules/nixos/locales.nix

View File

@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
# install gnuradio companion along with it's osmocom library
environment.systemPackages = with pkgs; [
(gnuradio.override {
extraPackages = with gnuradio.pkgs; [ osmosdr ];
})
hackrf
];
}