···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 = [ "xhci_pci" "ahci" "nvme" "uas" "sd_mod" "rtsx_pci_sdmmc" ];
1212- boot.initrd.kernelModules = [ ];
1313- boot.kernelModules = [ "kvm-intel" ];
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.wlp59s0.useDHCP = lib.mkDefault true;
2222-2323- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2424- hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2525-}
···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- boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ];
1010- boot.initrd.kernelModules = [ ];
1111- boot.kernelModules = [ ];
1212- boot.extraModulePackages = [ ];
1313-1414- # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
1515- # (the default) this is the recommended approach. When using systemd-networkd it's
1616- # still possible to use this option, but it's recommended to use it in conjunction
1717- # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
1818- networking.useDHCP = lib.mkDefault true;
1919- # networking.interfaces.enp0s3.useDHCP = lib.mkDefault true;
2020-2121- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
2222- virtualisation.virtualbox.guest.enable = true;
2323-}