1# List all devices which are detected by nixos-hardware-scan.
2# Common devices are enabled by default.
3{ config, lib, pkgs, ... }:
4
5with lib;
6
7{
8 config = mkDefault {
9 # Wireless card firmware
10 networking.enableIntel2200BGFirmware = true;
11 networking.enableIntel3945ABGFirmware = true;
12 };
13}