Fixes https://github.com/NixOS/nixpkgs/issues/13170
This commit is contained in:
parent
afd33028e3
commit
a667b3aa4f
22
airis/n990.nix
Normal file
22
airis/n990.nix
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue