Skip to content

Commit

Permalink
Remove uses of mdDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
lopsided98 committed May 12, 2024
1 parent 527c330 commit c5c7a6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions modules/local/machine/raspberry-pi.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
'';
};
Expand Down
2 changes: 1 addition & 1 deletion modules/services/networking/mavlink-router.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
'';
Expand Down

0 comments on commit c5c7a6a

Please sign in to comment.