From 635f5ea350f375d183ef6994691cf9c47f84191e Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Fri, 16 Jun 2023 10:28:38 +0000 Subject: modules: use Markdown documentation descriptions --- modules/workstation/windowing/sway/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/workstation/windowing/sway/default.nix') diff --git a/modules/workstation/windowing/sway/default.nix b/modules/workstation/windowing/sway/default.nix index baaad51b8f3c..07b61c3e1c0f 100644 --- a/modules/workstation/windowing/sway/default.nix +++ b/modules/workstation/windowing/sway/default.nix @@ -1,7 +1,7 @@ { pkgs, lib, config, ... }: let - inherit (lib) mkOption optionalString; + inherit (lib) mdDoc mkOption optionalString; inherit (lib.types) lines nullOr path; inherit (pkgs) callPackage substituteAll; @@ -14,13 +14,13 @@ in options = { programs.sway.extraConfig = mkOption { type = lines; - description = "Lines to append to sway's config file"; + description = mdDoc "Lines to append to sway's config file"; default = ""; }; programs.sway.wallpaper = mkOption { type = nullOr path; - description = "Path to wallpaper for sway and swaylock"; + description = mdDoc "Path to wallpaper for sway and swaylock"; default = null; }; }; -- cgit 1.4.1