summaryrefslogtreecommitdiffstats
path: root/acer/aspire/4810t/default.nix
blob: d40b454b3aa4801315ddc3453f96cb7bc72a475a (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
29
{ lib, ... }:

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

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

      # Important, disable KMS to fix backlight regulation:
      "nomodeset"
    ];
  };

  # TODO: reverse compat
  hardware.opengl.driSupport = false;

  # TODO: reverse compat
  services.xserver = {
    defaultDepth = lib.mkDefault 24;
  };
}