summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}