nixfiles/hosts/lappy-t495/hardware.nix

27 lines
536 B
Nix
Raw Normal View History

2023-07-21 11:48:07 +01:00
{tree, ...}: {
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
initrd.availableKernelModules = [
# defaults from nixos-generate-config
"nvme"
"ehci_pci"
"xhci_pci"
"usb_storage"
"sd_mod"
"sdhci_pci"
];
kernelModules = ["kvm-amd"];
};
2023-07-21 12:34:51 +01:00
2023-07-21 11:48:07 +01:00
hardware.cpu.amd.updateMicrocode = true;
2023-07-21 12:34:51 +01:00
services.tlp.settings = {
RUNTIME_PM_BLACKLIST = "05:00.3 05:00.4";
};
2023-08-28 18:50:25 +01:00
imports = with tree; [presets.nixos.dual-encrypted-drive];
2023-07-21 11:48:07 +01:00
}