mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +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
|
@ -3,9 +3,17 @@
|
||||||
{
|
{
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
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.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ ];
|
boot.kernelModules = [ "uhid" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
|
|
Loading…
Reference in a new issue