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