mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
12 lines
289 B
Nix
12 lines
289 B
Nix
|
{ lib, ... }: {
|
||
|
boot.kernelParams = [ "fbcon=rotate:1" ];
|
||
|
|
||
|
# Required for grub to properly display the boot menu.
|
||
|
boot.loader.grub.gfxmodeEfi = lib.mkDefault "720x1280x32";
|
||
|
|
||
|
fonts.fontconfig = {
|
||
|
# Pixel order for rotated screen
|
||
|
subpixel.rgba = lib.mkDefault "vbgr";
|
||
|
};
|
||
|
}
|