15 lines
365 B
Nix
15 lines
365 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
boot = {
|
|
loader.systemd-boot.enable = true;
|
|
loader.systemd-boot.editor = false;
|
|
loader.efi.canTouchEfiVariables = true;
|
|
|
|
initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
|
kernelModules = [ "kvm-intel" ];
|
|
|
|
supportedFilesystems = [ "ntfs" ]; # for USB drives
|
|
};
|
|
}
|