about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authormarkuskowa <markus.kowalewski@gmail.com>2018-12-18 09:29:32 +0100
committerGitHub <noreply@github.com>2018-12-18 09:29:32 +0100
commit5289fcc422d9c373d39ef0d638e814d890c8c3eb (patch)
tree26a4d7ed02e339304189fee1666a81edeebe5e35 /nixos
parent982b5ee26f079656875e299b772147217fcc09a2 (diff)
parent7112cd88220dd53b95e8a5a43248f33328be357d (diff)
downloadnixlib-5289fcc422d9c373d39ef0d638e814d890c8c3eb.tar
nixlib-5289fcc422d9c373d39ef0d638e814d890c8c3eb.tar.gz
nixlib-5289fcc422d9c373d39ef0d638e814d890c8c3eb.tar.bz2
nixlib-5289fcc422d9c373d39ef0d638e814d890c8c3eb.tar.lz
nixlib-5289fcc422d9c373d39ef0d638e814d890c8c3eb.tar.xz
nixlib-5289fcc422d9c373d39ef0d638e814d890c8c3eb.tar.zst
nixlib-5289fcc422d9c373d39ef0d638e814d890c8c3eb.zip
Merge pull request #47297 from greydot/bladerf
Introduce hardware/bladeRF module
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/hardware/bladeRF.nix28
-rw-r--r--nixos/modules/module-list.nix1
2 files changed, 29 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
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 01eb766fb4dd..8fda7ee0b0a9 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -36,6 +36,7 @@
   ./config/vpnc.nix
   ./config/zram.nix
   ./hardware/all-firmware.nix
+  ./hardware/bladeRF.nix
   ./hardware/brightnessctl.nix
   ./hardware/ckb-next.nix
   ./hardware/cpu/amd-microcode.nix