summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware
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/modules/hardware
parent982b5ee26f079656875e299b772147217fcc09a2 (diff)
parent7112cd88220dd53b95e8a5a43248f33328be357d (diff)
Merge pull request #47297 from greydot/bladerf
Introduce hardware/bladeRF module
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