summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorIvan Jager <aij+git@mrph.org>2021-12-31 10:04:44 -0600
committerIvan Jager <aij+git@mrph.org>2021-12-31 10:24:55 -0600
commit0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0 (patch)
tree441710f39f37d630b42e57cb747ffe5df8d92d6b /nixos/modules/hardware
parentca0fbf9739e0b214b7e3f74c1bdfa4d258b827ba (diff)
downloadnixpkgs-0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0.tar
nixpkgs-0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0.tar.gz
nixpkgs-0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0.tar.bz2
nixpkgs-0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0.tar.lz
nixpkgs-0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0.tar.xz
nixpkgs-0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0.tar.zst
nixpkgs-0d7fc6f090aa5e66f39578fc67ea238f1daa9ef0.zip
nixos/hardware/rtl-sdr: Fix description
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/rtl-sdr.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/nixos/modules/hardware/rtl-sdr.nix b/nixos/modules/hardware/rtl-sdr.nix
index 9605c7967f6..e85fc04e29b 100644
--- a/nixos/modules/hardware/rtl-sdr.nix
+++ b/nixos/modules/hardware/rtl-sdr.nix
@@ -5,10 +5,14 @@ let
 
 in {
   options.hardware.rtl-sdr = {
-    enable = lib.mkEnableOption ''
-      Enables rtl-sdr udev rules, ensures 'plugdev' group exists, and blacklists DVB kernel modules.
-      This is a prerequisite to using devices supported by rtl-sdr without being root, since rtl-sdr USB descriptors will be owned by plugdev through udev.
-    '';
+    enable = lib.mkOption {
+      type = lib.types.bool;
+      default = false;
+      description = ''
+        Enables rtl-sdr udev rules, ensures 'plugdev' group exists, and blacklists DVB kernel modules.
+        This is a prerequisite to using devices supported by rtl-sdr without being root, since rtl-sdr USB descriptors will be owned by plugdev through udev.
+       '';
+    };
   };
 
   config = lib.mkIf cfg.enable {