summaryrefslogtreecommitdiffstats
path: root/acer/aspire/4810t/default.nix
blob: f21d630478defb6a1ab3c885b8853c0dbb6afbf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, ... }:

{
  imports = [
    ../../../common/cpu/intel
    ../../../common/pc/laptop
  ];

  boot = {
    initrd.kernelModules = [ "ata_piix" ];
    kernelParams = [
      "apm=on"
      "acpi=on"
      "vga=0x317"
      "video=vesafb:ywrap"

      # Important, to disable Kernel Mode Setting for the graphics card
      # This will allow backlight regulation
      "nomodeset"
    ];
  };

  hardware.opengl.driSupport = false;

  services.xserver = {
    defaultDepth = lib.mkDefault 24;
  };
}