airis/n990: fix evaluation

This commit is contained in:
Yegor Timoshenko 2017-12-24 12:04:23 +00:00
parent 667b1d8eb9
commit dd87817ffc
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{ ... }:
{ lib, pkgs, ... }:
{
boot = {
@ -13,10 +13,10 @@
];
};
services.xserver = {
videoDriver = "unichrome";
synaptics.enable = true;
};
hardware.firmware = with pkgs; [ intel2200BGFirmware ];
networking.enableIntel2200BGFirmware = true;
services.xserver = {
synaptics.enable = lib.mkDefault true;
videoDrivers = [ "unichrome" ];
};
}