1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-05-31 18:13:34 +02:00
nixos-hardware/airis/n990/default.nix
2017-12-24 23:21:05 +00:00

22 lines
393 B
Nix

{ 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" ];
}