1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-05 10:53:27 +02:00
nixos-hardware/airis/n990/default.nix

23 lines
407 B
Nix
Raw Normal View History

2017-12-24 13:04:23 +01:00
{ lib, pkgs, ... }:
{
boot = {
initrd.kernelModules = [ "pata_via" ];
kernelParams = [
"apm=on"
"acpi=on"
"vga=0x317" # 1024x768
"console=tty1"
"video=vesafb:ywrap" # Faster scroll
];
};
2017-12-24 13:04:23 +01:00
hardware.firmware = with pkgs; [ intel2200BGFirmware ];
services.xserver = {
2017-12-24 13:04:23 +01:00
synaptics.enable = lib.mkDefault true;
videoDrivers = [ "unichrome" ];
};
}