about summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorLana Black <lanablack@amok.cc>2018-09-24 19:40:45 +0000
committerLana Black <lanablack@amok.cc>2018-12-18 08:11:18 +0000
commit7112cd88220dd53b95e8a5a43248f33328be357d (patch)
treec1dc7a285e1f71627d11b9fe75b7ee885c464f43 /nixos/modules/hardware
parentbc2905b02032ce66f012482b638edc2e1cea5e55 (diff)
downloadnixlib-7112cd88220dd53b95e8a5a43248f33328be357d.tar
nixlib-7112cd88220dd53b95e8a5a43248f33328be357d.tar.gz
nixlib-7112cd88220dd53b95e8a5a43248f33328be357d.tar.bz2
nixlib-7112cd88220dd53b95e8a5a43248f33328be357d.tar.lz
nixlib-7112cd88220dd53b95e8a5a43248f33328be357d.tar.xz
nixlib-7112cd88220dd53b95e8a5a43248f33328be357d.tar.zst
nixlib-7112cd88220dd53b95e8a5a43248f33328be357d.zip
nixos/hardware/bladeRF: init at 2.0.2
This allows to easily enable bladerf-related udev rules with nixos
configuration.
Diffstat (limited to 'nixos/modules/hardware')
-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 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