mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-07 02:18:47 +08:00
Fixes https://github.com/NixOS/nixpkgs/issues/13170
This commit is contained in:
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;
|
||||
}
|
||||
Reference in New Issue
Block a user