about summary refs log tree commit diff
path: root/nixos/modules/installer/scan/detected.nix
blob: f350cd986afa0a2495843acbc9f8c36d7dec82b1 (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, lib, pkgs, ... }:

with lib;

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