1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-06 03:14:19 +02:00
nixos-hardware/common/hidpi.nix
2024-06-08 06:29:16 +00:00

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