Good
This commit is contained in:
@@ -19,5 +19,6 @@
|
||||
# ./printing.nix
|
||||
./libreoffice.nix
|
||||
./hyprland-suite.nix
|
||||
# ./gnuradio.nix
|
||||
];
|
||||
}
|
||||
|
||||
Executable
+29
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user