ADD HACKRF and radio.nix

This commit is contained in:
Sojus07
2025-03-12 13:27:36 +01:00
parent f67ce54e8a
commit 5823b2d534
3 changed files with 12 additions and 4 deletions

View File

@ -14,5 +14,6 @@
./virt.nix
./boot.nix
./hw.nix
./radio.nix
];
}

View File

@ -7,9 +7,5 @@
graphics = {
enable = true;
};
rtl-sdr = {
enable = true;
};
};
}

View File

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
hardware = {
rtl-sdr = {
enable = true;
};
hackrf = {
enable = true;
};
};
}