mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-21 08:59:20 +03:00
initrd.availableKernelModules: add support for keyboards
As explained in #2169, some keyboards need special drivers, so these are always added, both on installation and normal systems.
This commit is contained in:
parent
bcdbbf3ea1
commit
02cb604fd6
2 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
{
|
{
|
||||||
|
|
||||||
# The initrd has to contain any module that might be necessary for
|
# The initrd has to contain any module that might be necessary for
|
||||||
# mounting the CD/DVD.
|
# supporting the most important parts of HW like drives.
|
||||||
boot.initrd.availableKernelModules =
|
boot.initrd.availableKernelModules =
|
||||||
[ # SATA/PATA support.
|
[ # SATA/PATA support.
|
||||||
"ahci"
|
"ahci"
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
"virtio_net" "virtio_pci" "virtio_blk" "virtio_balloon" "virtio_console"
|
"virtio_net" "virtio_pci" "virtio_blk" "virtio_balloon" "virtio_console"
|
||||||
|
|
||||||
# Keyboards
|
# Keyboards
|
||||||
"hid_apple"
|
"usbhid" "hid_apple" "hid_logitech_dj" "hid_lenovo_tpkbd" "hid_roccat"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Include lots of firmware.
|
# Include lots of firmware.
|
||||||
|
|
|
@ -195,6 +195,7 @@ in
|
||||||
"xhci_hcd"
|
"xhci_hcd"
|
||||||
"usbhid"
|
"usbhid"
|
||||||
"hid_generic"
|
"hid_generic"
|
||||||
|
"hid_apple" "hid_logitech_dj" "hid_lenovo_tpkbd" "hid_roccat"
|
||||||
|
|
||||||
# Unix domain sockets (needed by udev).
|
# Unix domain sockets (needed by udev).
|
||||||
"unix"
|
"unix"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue