From 7112cd88220dd53b95e8a5a43248f33328be357d Mon Sep 17 00:00:00 2001 From: Lana Black Date: Mon, 24 Sep 2018 19:40:45 +0000 Subject: nixos/hardware/bladeRF: init at 2.0.2 This allows to easily enable bladerf-related udev rules with nixos configuration. --- nixos/modules/hardware/bladeRF.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 nixos/modules/hardware/bladeRF.nix (limited to 'nixos/modules/hardware') diff --git a/nixos/modules/hardware/bladeRF.nix b/nixos/modules/hardware/bladeRF.nix new file mode 100644 index 000000000000..925443477143 --- /dev/null +++ b/nixos/modules/hardware/bladeRF.nix @@ -0,0 +1,28 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.hardware.bladeRF; + +in + +{ + options.hardware.bladeRF = { + enable = mkOption { + type = types.bool; + default = false; + description = '' + Enables udev rules for BladeRF devices. By default grants access + to users in the "bladerf" group. You may want to install the + libbladeRF package. + ''; + }; + + }; + + config = mkIf cfg.enable { + services.udev.packages = [ pkgs.libbladeRF ]; + users.groups.bladerf = {}; + }; +} \ No newline at end of file -- cgit v1.2.3