summary refs log tree commit diff
path: root/nixos/modules/system/boot/kernel.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-06 20:25:06 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-01-22 12:53:33 +0200
commit95880aaf062616dd486139a27df86c80e93bd1a4 (patch)
tree7bc04617e1c19713efdc6305d93da3c0d90057e9 /nixos/modules/system/boot/kernel.nix
parent44326993f4a32f0d7137e5125e877ebd8d821b2d (diff)
downloadnixlib-95880aaf062616dd486139a27df86c80e93bd1a4.tar
nixlib-95880aaf062616dd486139a27df86c80e93bd1a4.tar.gz
nixlib-95880aaf062616dd486139a27df86c80e93bd1a4.tar.bz2
nixlib-95880aaf062616dd486139a27df86c80e93bd1a4.tar.lz
nixlib-95880aaf062616dd486139a27df86c80e93bd1a4.tar.xz
nixlib-95880aaf062616dd486139a27df86c80e93bd1a4.tar.zst
nixlib-95880aaf062616dd486139a27df86c80e93bd1a4.zip
nixos/initrd: Don't include some x86-specific modules unconditionally
Diffstat (limited to 'nixos/modules/system/boot/kernel.nix')
-rw-r--r--nixos/modules/system/boot/kernel.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/nixos/modules/system/boot/kernel.nix b/nixos/modules/system/boot/kernel.nix
index 90074a1ba77b..ba9d7285fbab 100644
--- a/nixos/modules/system/boot/kernel.nix
+++ b/nixos/modules/system/boot/kernel.nix
@@ -208,10 +208,11 @@ in
         "usbhid"
         "hid_generic" "hid_lenovo" "hid_apple" "hid_roccat" "hid_logitech_hidpp"
 
-        # Misc. keyboard stuff.
+      ] ++ optionals (pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64) [
+        # Misc. x86 keyboard stuff.
         "pcips2" "atkbd" "i8042"
 
-        # Needed by the stage 2 init script.
+        # x86 RTC needed by the stage 2 init script.
         "rtc_cmos"
       ];