This commit is contained in:
2026-02-19 23:45:24 +02:00
parent ca52a4fd60
commit 2491b461a4
7 changed files with 78 additions and 6 deletions
+1
View File
@@ -19,5 +19,6 @@
# ./printing.nix
./libreoffice.nix
./hyprland-suite.nix
# ./gnuradio.nix
];
}
+29
View File
@@ -0,0 +1,29 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.gnuradio.enable;
in {
options.azos.gnuradio.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
gnuradio
uhd
gmp
boost
volk
libxcursor
cmake
pkg-config
spdlog
];
};
}