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

26 lines
511 B
Nix
Raw Permalink Normal View History

2024-10-27 12:33:35 +01: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
2024-10-27 12:33:35 +01:00
boot.kernelModules = [ "kvm-amd" ];
2024-10-26 14:59:00 +02:00
hardware.cpu.amd.updateMicrocode = true;
boot = {
2024-10-27 12:33:35 +01:00
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;
2024-10-27 12:33:35 +01:00
swapDevices = [ ];
2024-10-26 17:30:11 +02:00
networking.interfaces.eno1.wakeOnLan.enable = true;
2023-09-09 19:37:08 +02:00
};
}