···11+# Do not modify this file! It was generated by ‘nixos-generate-config’
22+# and may be overwritten by future invocations. Please make changes
33+# to /etc/nixos/configuration.nix instead.
44+{ config, lib, pkgs, modulesPath, ... }:
55+66+{
77+ imports =
88+ [ (modulesPath + "/installer/scan/not-detected.nix")
99+ ];
1010+1111+ boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" ];
1212+ boot.initrd.kernelModules = [ ];
1313+ boot.kernelModules = [ "kvm-amd" ];
1414+ boot.extraModulePackages = [ ];
1515+1616+ # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
1717+ # (the default) this is the recommended approach. When using systemd-networkd it's
1818+ # still possible to use this option, but it's recommended to use it in conjunction
1919+ # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
2020+ networking.useDHCP = lib.mkDefault true;
2121+2222+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2323+ hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2424+}