infrastructure/hosts/aurum/system/boot/default.nix

32 lines
795 B
Nix
Raw Normal View History

2024-01-15 15:50:55 +00:00
{
pkgs,
config,
lib,
2024-01-15 15:50:55 +00:00
...
}: {
# support for mounting windaube partitions
boot.supportedFilesystems = ["ntfs"];
boot.loader.efi.canTouchEfiVariables = true;
# tmp, will be replaced by lanzaboot
boot.loader.systemd-boot.enable = true;
2024-01-15 15:50:55 +00:00
# clean /tmp at each boot
boot.tmp.cleanOnBoot = true;
# use latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2024-01-15 15:50:55 +00:00
# imports = [
# ./lanzaboot.nix
# ];
boot.initrd.availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"];
boot.initrd.kernelModules = [""];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
2024-01-15 15:50:55 +00:00
}