2024-11-29 01:49:18 -05:00
|
|
|
# nixos-generate-config --root ./ --no-filesystems
|
|
|
|
{ config, lib, ... }:
|
2024-11-06 22:39:23 -05:00
|
|
|
{
|
2024-11-29 01:49:18 -05:00
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "sr_mod" ];
|
|
|
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
2024-11-06 22:39:23 -05:00
|
|
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
2024-11-29 01:49:18 -05:00
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
2024-11-06 22:39:23 -05:00
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
}
|