mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
29027fd1e1
Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
14 lines
303 B
Nix
14 lines
303 B
Nix
# 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;
|
|
};
|
|
}
|