summaryrefslogtreecommitdiffstats
path: root/airis
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 12:04:23 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 12:04:23 +0000
commitdd87817ffc7c60929949183cdf9dc88c96e4bdb6 (patch)
treef28cfb3a744cfa270f66312d6a42388d3ce46ab9 /airis
parent667b1d8eb9c23d1de433d71caea5648a5acabadb (diff)
airis/n990: fix evaluation
Diffstat (limited to 'airis')
-rw-r--r--airis/n990/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/airis/n990/default.nix b/airis/n990/default.nix
index b3056b7..7c45d2a 100644
--- a/airis/n990/default.nix
+++ b/airis/n990/default.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ lib, pkgs, ... }:
{
boot = {
@@ -13,10 +13,10 @@
];
};
+ hardware.firmware = with pkgs; [ intel2200BGFirmware ];
+
services.xserver = {
- videoDriver = "unichrome";
- synaptics.enable = true;
+ synaptics.enable = lib.mkDefault true;
+ videoDrivers = [ "unichrome" ];
};
-
- networking.enableIntel2200BGFirmware = true;
}