mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-08 12:09:40 +01:00
6 lines
223 B
Nix
6 lines
223 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
# Just set the console font, don't mess with the font settings
|
|
console.font = lib.mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-v32n.psf.gz";
|
|
console.earlySetup = lib.mkDefault true;
|
|
}
|