mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 17:27:14 +08:00
15 lines
285 B
Nix
15 lines
285 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../../common/cpu/intel
|
|
../../common/pc/laptop
|
|
../../common/pc/ssd
|
|
../../common/hidpi.nix
|
|
];
|
|
# Fixes the display being rotated 90 degrees.
|
|
boot.kernelParams = [
|
|
"fbcon=rotate:1"
|
|
"video=DSI-1:panel_orientation=right_side_up"
|
|
];
|
|
}
|