···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+ [
99+ (modulesPath + "/installer/scan/not-detected.nix")
1010+ ];
1111+1212+ boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "uas" "sd_mod" ];
1313+ boot.initrd.kernelModules = [ ];
1414+ boot.kernelModules = [ "kvm-amd" ];
1515+ boot.extraModulePackages = [ ];
1616+1717+ # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
1818+ # (the default) this is the recommended approach. When using systemd-networkd it's
1919+ # still possible to use this option, but it's recommended to use it in conjunction
2020+ # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
2121+ networking.useDHCP = lib.mkDefault true;
2222+ # networking.interfaces.enp6s0.useDHCP = lib.mkDefault true;
2323+ # networking.interfaces.enp9s0f3u1u1.useDHCP = lib.mkDefault true;
2424+2525+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2626+ hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2727+}