summary refs log tree commit diff
path: root/nixos/modules/installer/scan/detected.nix
blob: 09d04608e68586b2f272a2b66a3433867d1a775c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# List all devices which are detected by nixos-hardware-scan.
# Common devices are enabled by default.
{config, pkgs, ...}:

with pkgs.lib;

{
  config = mkDefault {
    # Wireless card firmware
    networking.enableIntel2200BGFirmware = true;
    networking.enableIntel3945ABGFirmware = true;
  };
}