1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-26 14:38:31 +02:00

4810t: fix evaluation, clean up

This commit is contained in:
Yegor Timoshenko 2017-12-24 11:59:21 +00:00
parent 097d47e3f8
commit 667b1d8eb9
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210

View File

@ -1,37 +1,27 @@
/* imported from https://nixos.org/wiki/Acer_4810T */
{ config, pkgs, lib, ... }:
{ {
# Make te network WLAN card (wlan0) firmware available boot = {
require = [ <nixpkgs>/nixos/modules/hardware/network/intel-5000.nix ]; initrd.kernelModules = [ "ata_piix" ];
kernelParams = [
boot = rec {
initrd.kernelModules = [ "ata_piix" ];
kernelParams = [
"apm=on" "apm=on"
"acpi=on" "acpi=on"
"vga=0x317" "vga=0x317"
"video=vesafb:ywrap" "video=vesafb:ywrap"
# Important, to disable Kernel Mode Setting for the graphics card # Important, to disable Kernel Mode Setting for the graphics card
# This will allow backlight regulation # This will allow backlight regulation
"nomodeset" "nomodeset"
]; ];
kernelModules = [
"kvm-intel"
];
};
services = {
xserver = {
enable = true;
defaultDepth = 24;
videoDriver = "intel";
autorun = true;
driSupport = false;
synaptics = {
enable = true;
dev = "/dev/input/event8";
};
}; };
};
hardware.opengl.driSupport = false;
services.xserver = {
enable = true;
defaultDepth = 24;
videoDriver = "intel";
autorun = true;
synaptics = {
enable = true;
dev = "/dev/input/event8";
};
};
}