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

with lib;

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