1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/nixos/modules/installer/scan/detected.nix

14 lines
303 B
Nix
Raw Normal View History

# List all devices which are detected by nixos-hardware-scan.
# Common devices are enabled by default.
{ config, lib, pkgs, ... }:
with lib;
{
config = mkDefault {
# Wireless card firmware
networking.enableIntel2200BGFirmware = true;
networking.enableIntel3945ABGFirmware = true;
};
}