Files
nix-fleet/modules/hosts/computer-mo/hardware.nix
2026-03-03 11:37:37 +01:00

10 lines
485 B
Nix

{ ... }: {
flake.nixosModules.computer-mo = { system, ... }: {
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" "nvme" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.kernelParams = [ "quiet" "splash" "boot.shell_on_fail" "loglevel=3" "rd.systemd.show_status=false" "rd.udev.log_level=3" "udev.log_priority=3" ];
nixpkgs.hostPlatform = system;
hardware.cpu.amd.updateMicrocode = true;
boot.kernelModules = [ "kvm-amd" ];
};
}