Merge pull request #126658 from ncfavier/patch-2

nixos/console: allow console.font to be a path
This commit is contained in:
Michele Guerini Rocco
2021-06-12 18:47:18 +02:00
committed by GitHub
+2 -1
View File
@@ -43,13 +43,14 @@ in
options.console = {
font = mkOption {
type = types.str;
type = with types; either str path;
default = "Lat2-Terminus16";
example = "LatArCyrHeb-16";
description = ''
The font used for the virtual consoles. Leave empty to use
whatever the <command>setfont</command> program considers the
default font.
Can be either a font name or a path to a PSF font file.
'';
};