{ imports = [ ../common/optional/ephemeral-btrfs.nix ]; boot = { initrd = { availableKernelModules = [ "nvme" "xhci_pci" "ahci" "rtsx_usb_sdmmc" "usbhid" ]; kernelModules = [ "kvm-intel" ]; }; loader = { systemd-boot = { enable = true; consoleMode = "max"; }; efi.canTouchEfiVariables = true; }; }; fileSystems = { "/boot" = { device = "/dev/disk/by-label/ESP"; fsType = "vfat"; }; }; swapDevices = [{ device = "/swap/swapfile"; size = 8196; }]; nixpkgs.hostPlatform.system = "x86_64-linux"; hardware.cpu.intel.updateMicrocode = true; powerManagement.cpuFreqGovernor = "powersave"; }