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