about summary refs log tree commit diff
path: root/nixos/modules/hardware/bladeRF.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-12-19 08:57:41 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-19 08:57:41 +0100
commit911d1853ca990a7af6725105e7cda8c24cac025f (patch)
tree61aac8cb7c86d87fa2cdffe4b01e721e5e6fff64 /nixos/modules/hardware/bladeRF.nix
parent826ab7026e0f18c85fb861ae5f97bad1e9f37006 (diff)
parentb9307eddd67e0e3f087dec608ccc84fec72deda5 (diff)
Merge master into staging-next
Diffstat (limited to 'nixos/modules/hardware/bladeRF.nix')
-rw-r--r--nixos/modules/hardware/bladeRF.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixos/modules/hardware/bladeRF.nix b/nixos/modules/hardware/bladeRF.nix
new file mode 100644
index 0000000000000..9254434771431
--- /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