about summary refs log tree commit diff
path: root/airis/n990
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/n990
parent667b1d8eb9c23d1de433d71caea5648a5acabadb (diff)
downloadnixlib-dd87817ffc7c60929949183cdf9dc88c96e4bdb6.tar
nixlib-dd87817ffc7c60929949183cdf9dc88c96e4bdb6.tar.gz
nixlib-dd87817ffc7c60929949183cdf9dc88c96e4bdb6.tar.bz2
nixlib-dd87817ffc7c60929949183cdf9dc88c96e4bdb6.tar.lz
nixlib-dd87817ffc7c60929949183cdf9dc88c96e4bdb6.tar.xz
nixlib-dd87817ffc7c60929949183cdf9dc88c96e4bdb6.tar.zst
nixlib-dd87817ffc7c60929949183cdf9dc88c96e4bdb6.zip
airis/n990: fix evaluation
Diffstat (limited to 'airis/n990')
-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 b3056b7d0b4d..7c45d2a2b3dc 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;
 }