about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/haruka/configuration.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/haruka/configuration.nix b/nixos/haruka/configuration.nix
index 41dfc4a..d6cba4b 100644
--- a/nixos/haruka/configuration.nix
+++ b/nixos/haruka/configuration.nix
@@ -13,8 +13,13 @@
   boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
   boot.kernelParams = [
     "console=tty1"
+    "i915.fastboot=1"
   ];
 
+  # Load the intel iGPU driver
+  boot.initrd.kernelModules = [ "i915" ];
+  services.xserver.videoDrivers = [ "intel" ];
+
   boot.initrd.supportedFilesystems = [ "zfs" ];
   boot.supportedFilesystems = [ "zfs" ];
   boot.zfs.enableUnstable = true;