summaryrefslogtreecommitdiffstats
path: root/airis/n990/default.nix
blob: ae06813131a891c3ef0140b263209731797ff566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, pkgs, ... }:

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

  boot = {
    initrd.kernelModules = [ "pata_via" ];

    kernelParams = [
      "apm=on"
      "acpi=on"
      "vga=0x317"  # 1024x768
      "console=tty1"
      "video=vesafb:ywrap"  # Faster scroll
     ];
  };

  hardware.firmware = with pkgs; [ intel2200BGFirmware ];

  services.xserver.videoDrivers = [ "openchrome" ];
}