From bc745f7dc1089b2fae2b54cb69e8f0a35bf5a688 Mon Sep 17 00:00:00 2001 From: Travis Staton Date: Mon, 18 Mar 2024 20:46:27 -0400 Subject: [PATCH] document new options --- rpi/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/rpi/default.nix b/rpi/default.nix index 475c9ad..1652799 100644 --- a/rpi/default.nix +++ b/rpi/default.nix @@ -12,18 +12,35 @@ in enable = mkOption { default = true; type = types.bool; + description = '' + Whether to run the migration service automatically or not. + ''; }; }; libcamera-overlay = { enable = mkOption { default = true; type = types.bool; + description = '' + If enabled then the libcamera overlay is applied which + overrides libcamera with the rpi fork. + ''; }; }; uboot = { enable = mkOption { default = true; type = types.bool; + description = '' + If enabled then uboot is used as the bootloader. If disabled + then the linux kernel is installed directly into the + firmware directory as expected by the raspberry pi boot + process. + + This can be useful for newer hardware that doesn't yet have + uboot compatibility or less common setups, like booting a + cm4 with an nvme drive. + ''; }; }; };