mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 02:29:40 +01:00
22 lines
407 B
Nix
22 lines
407 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
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 = {
|
|
synaptics.enable = lib.mkDefault true;
|
|
videoDrivers = [ "unichrome" ];
|
|
};
|
|
}
|