summary refs log tree commit diff
path: root/nixos/modules/hardware/device-tree.nix
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2020-06-21 10:25:52 +0200
committerFlorian Klink <flokli@flokli.de>2020-06-21 10:39:10 +0200
commit43424688db8b30904e8bf8efd077304016bf0340 (patch)
tree97323187dd842ecfbb3ccd6f8b06cc050e6076d6 /nixos/modules/hardware/device-tree.nix
parenta4de542abea148a147134bd87bce74ba9902831f (diff)
downloadnixpkgs-43424688db8b30904e8bf8efd077304016bf0340.tar
nixpkgs-43424688db8b30904e8bf8efd077304016bf0340.tar.gz
nixpkgs-43424688db8b30904e8bf8efd077304016bf0340.tar.bz2
nixpkgs-43424688db8b30904e8bf8efd077304016bf0340.tar.lz
nixpkgs-43424688db8b30904e8bf8efd077304016bf0340.tar.xz
nixpkgs-43424688db8b30904e8bf8efd077304016bf0340.tar.zst
nixpkgs-43424688db8b30904e8bf8efd077304016bf0340.zip
nixos/deviceTree: fix description
hardware.deviceTree.base points to a path, not a package (and also if of
types.path)

It defaults to ${config.boot.kernelPackages.kernel}/dtbs.
Diffstat (limited to 'nixos/modules/hardware/device-tree.nix')
-rw-r--r--nixos/modules/hardware/device-tree.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/device-tree.nix b/nixos/modules/hardware/device-tree.nix
index cf553497c89..6ae638f17cc 100644
--- a/nixos/modules/hardware/device-tree.nix
+++ b/nixos/modules/hardware/device-tree.nix
@@ -22,7 +22,7 @@ in {
           example = literalExample "pkgs.device-tree_rpi";
           type = types.path;
           description = ''
-            The package containing the base device-tree (.dtb) to boot. Contains
+            The path containing the base device-tree (.dtb) to boot. Contains
             device trees bundled with the Linux kernel by default.
           '';
         };