1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-10 05:08:43 +02:00
nixos-hardware/common/hidpi.nix

7 lines
223 B
Nix
Raw Normal View History

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