mirror of
https://github.com/ivabus/nixos
synced 2024-11-22 00:15:06 +03:00
machines/celerrime: fix all types of USB /
Bluetooth devices / input issues Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
parent
d97a20f739
commit
0d1f33efba
1 changed files with 10 additions and 2 deletions
|
@ -3,9 +3,17 @@
|
|||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "usb_storage" "xhci_pci" "usbhid" ];
|
||||
boot.initrd.availableKernelModules = [
|
||||
"usb-storage"
|
||||
"xhci_pci"
|
||||
"usbhid"
|
||||
"mmc_block"
|
||||
"xhci_hcd"
|
||||
"xhci_plat_hcd"
|
||||
"hid_generic"
|
||||
];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ ];
|
||||
boot.kernelModules = [ "uhid" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" = {
|
||||
|
|
Loading…
Reference in a new issue