at 17.09-beta 305 B view raw
1# List all devices which are detected by nixos-generate-config. 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}