nixos-configuration/hosts/vinzenz-pc2/hardware.nix

21 lines
464 B
Nix
Raw Normal View History

{...}: {
2024-10-26 14:59:00 +02:00
imports = [
../../modules/amd-graphics.nix
];
2023-09-11 21:49:40 +02:00
config = {
2024-10-26 14:59:00 +02:00
# amd cpu
boot.kernelModules = ["kvm-amd"];
hardware.cpu.amd.updateMicrocode = true;
boot = {
initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "sd_mod"]; # "usb_storage"
loader.efi.efiSysMountPoint = "/boot";
};
2024-10-26 17:30:11 +02:00
fileSystems = import ./fstab.nix;
swapDevices = [];
2024-10-26 17:30:11 +02:00
networking.interfaces.eno1.wakeOnLan.enable = true;
2023-09-09 19:37:08 +02:00
};
}