mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
cf103b8d4d
devices. These are used to replace hand made listings in the basic installation CD. The configuration file, which is generated by nixos-hardware-scan, enables not-detected devices by default. svn path=/nixos/trunk/; revision=23911
13 lines
250 B
Nix
13 lines
250 B
Nix
# List all devices which are _not_ detected by nixos-hardware-scan.
|
|
# Common devices are enabled by default.
|
|
{config, pkgs, ...}:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
config = mkDefault {
|
|
# Wireless card firmware
|
|
networking.enableRT73Firmware = true;
|
|
};
|
|
}
|