mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
28 lines
520 B
Nix
28 lines
520 B
Nix
|
{ 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 = {};
|
||
|
};
|
||
|
}
|