···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 + "/profiles/qemu-guest.nix")
99+ ];
1010+1111+ boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
1212+ boot.initrd.kernelModules = [ ];
1313+ boot.kernelModules = [ ];
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+ # networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
2222+2323+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2424+}