diff --git a/modules/input.nix b/modules/input.nix index 00ee9081..34b7f7e2 100644 --- a/modules/input.nix +++ b/modules/input.nix @@ -43,16 +43,10 @@ let variant = lib.mkOption { type = with lib.types; nullOr str; default = null; - example = [ - "eng" - "mac" - "dvorak" - # these two examples below exists to tell that the spacer is not consistent (- or _). - "workman-intl" - "colemak_dh_wide_iso" - ]; + example = "eng"; description = '' Keyboard layout variant. + examples: "mac" "dvorak" "workman-intl" "colemak_dh_wide_iso" ''; apply = builtins.toString; };