Emery Hemingway 2016-02-26 12:06:00 +01:00
parent afd33028e3
commit a667b3aa4f
1 changed files with 22 additions and 0 deletions

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;
}