nixos/kmscon: fix option descriptions (#441468)

authored by

Aleksana and committed by
GitHub
32d4ae8f d57498fa

+5 -3
+5 -3
nixos/modules/services/ttys/kmscon.nix
··· 33 33 kmscon is a kms/dri-based userspace virtual terminal implementation. 34 34 It supports a richer feature set than the standard linux console VT, 35 35 including full unicode support, and when the video card supports drm 36 - should be much faster. 36 + should be much faster 37 37 ''; 38 38 39 39 package = mkPackageOption pkgs "kmscon" { }; 40 40 41 - hwRender = mkEnableOption "3D hardware acceleration to render the console."; 41 + hwRender = mkEnableOption "3D hardware acceleration to render the console"; 42 42 43 43 fonts = mkOption { 44 44 description = "Fonts used by kmscon, in order of priority."; ··· 63 63 nullOr (nonEmptyListOf fontType); 64 64 }; 65 65 66 - useXkbConfig = mkEnableOption "configure keymap from xserver keyboard settings."; 66 + useXkbConfig = mkEnableOption "" // { 67 + description = "Whether to configure keymap from xserver keyboard settings."; 68 + }; 67 69 68 70 extraConfig = mkOption { 69 71 description = "Extra contents of the kmscon.conf file.";