2024-11-06 22:39:23 -05:00
|
|
|
{ config, lib, modulesPath, ... }:
|
|
|
|
{
|
2024-11-24 16:53:49 -05:00
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
|
|
|
|
boot.kernelModules = [ "dm-snapshot" ];
|
2024-11-06 22:39:23 -05:00
|
|
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
}
|