Merge pull request #88669 from Mic92/hidpi

nixos/hidpi: Reasonable defaults for high-density displays
This commit is contained in:
Linus Heckemann
2020-07-22 17:43:03 +02:00
committed by GitHub
4 changed files with 20 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
{ lib, pkgs, config, ...}:
with lib;
{
options.hardware.video.hidpi.enable = mkEnableOption "Font/DPI configuration optimized for HiDPI displays";
config = mkIf config.hardware.video.hidpi.enable {
console.font = lib.mkDefault "${pkgs.terminus_font}/share/consolefonts/ter-v32n.psf.gz";
# Needed when typing in passwords for full disk encryption
console.earlySetup = mkDefault true;
boot.loader.systemd-boot.consoleMode = mkDefault "1";
# TODO Find reasonable defaults X11 & wayland
};
}