10.nixos-hardware/gpd/win-2/default.nix
2026-01-11 09:54:39 +01:00

18 lines
405 B
Nix

{ config, lib, ... }:
{
imports = [
../../common/cpu/intel
../../common/pc/ssd
];
boot.kernelParams = [
"fbcon=rotate:1"
"video=eDP-1:panel_orientation=right_side_up"
];
services.tlp.enable = lib.mkDefault (!config.services.power-profiles-daemon.enable);
# Required for grub to properly display the boot menu.
boot.loader.grub.gfxmodeEfi = lib.mkDefault "720x1280x32";
}