at 21.11-pre 518 B view raw
1{ lib, pkgs, config, ...}: 2with lib; 3 4{ 5 options.hardware.video.hidpi.enable = mkEnableOption "Font/DPI configuration optimized for HiDPI displays"; 6 7 config = mkIf config.hardware.video.hidpi.enable { 8 console.font = lib.mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-v32n.psf.gz"; 9 10 # Needed when typing in passwords for full disk encryption 11 console.earlySetup = mkDefault true; 12 boot.loader.systemd-boot.consoleMode = mkDefault "1"; 13 14 # TODO Find reasonable defaults X11 & wayland 15 }; 16}