NixOS/hosts/luna/os/boot.nix

23 lines
415 B
Nix
Raw Normal View History

{ modulesPath, ... }:
2023-10-27 01:46:14 -05:00
{
imports =
[
(modulesPath + "/installer/scan/not-detected.nix")
];
boot = {
2023-10-27 01:46:14 -05:00
initrd = {
availableKernelModules = [ "xhci_pci" "ahci" "nvme" "uas" "sd_mod" ];
2023-10-27 01:46:14 -05:00
kernelModules = [ ];
};
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelModules = [ "kvm-intel" ];
extraModulePackages = [ ];
};
}