30 lines
482 B
Nix
30 lines
482 B
Nix
{
|
|
pkgs,
|
|
modulesPath,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
boot = {
|
|
loader = {
|
|
timeout = 5;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
|
|
initrd.availableKernelModules = [
|
|
"ahci"
|
|
"nvme"
|
|
"sd_mod"
|
|
"usb_storage"
|
|
"usbhid"
|
|
"xhci_pci"
|
|
"rtsx_pci_sdmmc"
|
|
];
|
|
};
|
|
services.dbus = {
|
|
enable = true;
|
|
};
|
|
}
|