mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
21 lines
388 B
Nix
21 lines
388 B
Nix
{ 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" ];
|
|
}
|