Merge pull request #126658 from ncfavier/patch-2
nixos/console: allow console.font to be a path
This commit is contained in:
commit
ff4f74259a
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
'';
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue