lol

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