2017-02-18 00:40:54 +01:00
|
|
|
# List all devices which are detected by nixos-generate-config.
|
2010-09-25 11:32:37 +02:00
|
|
|
# Common devices are enabled by default.
|
2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-09-25 11:32:37 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2010-09-25 11:32:37 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
config = mkDefault {
|
2017-10-07 01:39:25 +02:00
|
|
|
# Common firmware, i.e. for wifi cards
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
2010-09-25 11:32:37 +02:00
|
|
|
};
|
|
|
|
}
|