summaryrefslogtreecommitdiffstats
path: root/airis/n990.nix
diff options
context:
space:
mode:
Diffstat (limited to 'airis/n990.nix')
-rw-r--r--airis/n990.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/airis/n990.nix b/airis/n990.nix
new file mode 100644
index 0000000..b3056b7
--- /dev/null
+++ b/airis/n990.nix
@@ -0,0 +1,22 @@
+{ ... }:
+
+{
+ boot = {
+ initrd.kernelModules = [ "pata_via" ];
+
+ kernelParams = [
+ "apm=on"
+ "acpi=on"
+ "vga=0x317" # 1024x768
+ "console=tty1"
+ "video=vesafb:ywrap" # Faster scroll
+ ];
+ };
+
+ services.xserver = {
+ videoDriver = "unichrome";
+ synaptics.enable = true;
+ };
+
+ networking.enableIntel2200BGFirmware = true;
+}