nixos-hardware/common/hidpi.nix

7 lines
223 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
2024-06-08 02:12:26 -04:00
{
# 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;
}