diff --git a/modules/local/machine/raspberry-pi.nix b/modules/local/machine/raspberry-pi.nix index da9b1cc..708cc17 100644 --- a/modules/local/machine/raspberry-pi.nix +++ b/modules/local/machine/raspberry-pi.nix @@ -11,19 +11,18 @@ let bootloaderCfg = config.boot.loader.raspberryPi; ubootEnabled = bootloaderCfg.uboot.enable; in { - # FIXME: find a way to import this from nixpkgs with flakes imports = singleton ./sd-image.nix; options.local.machine.raspberryPi = { version = mkOption { type = types.enum [ 0 1 2 3 4 ]; - description = lib.mdDoc "Raspberry Pi model version number"; + description = "Raspberry Pi model version number"; }; enableWirelessFirmware = mkOption { type = types.bool; default = false; - description = lib.mdDoc '' + description = '' Whether to enable the WiFi/Bluetooth firmware for the Raspberry Pi. ''; }; diff --git a/modules/services/networking/mavlink-router.nix b/modules/services/networking/mavlink-router.nix index 63f47ad..7a26b70 100644 --- a/modules/services/networking/mavlink-router.nix +++ b/modules/services/networking/mavlink-router.nix @@ -57,7 +57,7 @@ in { Baud = 52000; }; }; - description = lib.mdDoc '' + description = '' MAVLink Router configuration, see: https://github.com/mavlink-router/mavlink-router/blob/master/examples/config.sample '';