1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00
Emery Hemingway 2016-02-26 12:06:00 +01:00
parent afd33028e3
commit a667b3aa4f

22
airis/n990.nix Normal file
View File

@ -0,0 +1,22 @@
{ ... }:
{
boot = {
initrd.kernelModules = [ "pata_via" ];
kernelParams = [
"apm=on"
"acpi=on"
"vga=0x317" # 1024x768
"console=tty1"
"video=vesafb:ywrap" # Faster scroll
];
};
services.xserver = {
videoDriver = "unichrome";
synaptics.enable = true;
};
networking.enableIntel2200BGFirmware = true;
}