2010-09-25 11:32:37 +02:00
|
|
|
# List all devices which are detected by nixos-hardware-scan.
|
|
|
|
# Common devices are enabled by default.
|
2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-09-25 11:32:37 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2010-09-25 11:32:37 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
config = mkDefault {
|
|
|
|
# Wireless card firmware
|
|
|
|
networking.enableIntel2200BGFirmware = true;
|
|
|
|
networking.enableIntel3945ABGFirmware = true;
|
|
|
|
};
|
|
|
|
}
|