hardware-configuration.nix.md

hardware-configuration.nix

NixOS moduleA NixOS module, checked against real NixOS options and evaluated by the NixOS module system.
{ config, lib, pkgs, modulesPath, ... }:

{
  imports = [
    (modulesPath + "/installer/scan/not-detected.nix")
  ];

  boot.extraModulePackages = [];
  networking.useDHCP = lib.mkDefault true;
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}

This is a hardware-configuration.nix file, idk what to say here, don’t touch it.

Share your thoughts