nixpkgs/modules/hardware/network/intel-2200bg.nix
Eelco Dolstra ab1676b457 * Urgh, this should have been in commit r16350.
svn path=/nixos/branches/modular-nixos/; revision=16353
2009-07-14 13:28:50 +00:00

11 lines
250 B
Nix

{pkgs, config, ...}:
{
services = {
udev = {
# Warning: setting this option requires acceptance of the firmware
# license, see http://ipw2200.sourceforge.net/firmware.php?fid=7.
addFirmware = [ pkgs.ipw2200fw ];
};
};
}