mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-04 14:52:34 +03:00
13 lines
305 B
Nix
13 lines
305 B
Nix
# List all devices which are detected by nixos-generate-config.
|
|
# Common devices are enabled by default.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = mkDefault {
|
|
# Wireless card firmware
|
|
networking.enableIntel2200BGFirmware = true;
|
|
networking.enableIntel3945ABGFirmware = true;
|
|
};
|
|
}
|