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
commit ff4f74259a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.
'';
};