2017-02-17 23:40:54 +00:00
|
|
|
# List all devices which are detected by nixos-generate-config.
|
2010-09-25 10:32:37 +01:00
|
|
|
# Common devices are enabled by default.
|
2018-07-20 21:56:59 +01:00
|
|
|
{ lib, ... }:
|
2010-09-25 10:32:37 +01:00
|
|
|
{
|
2024-08-28 20:18:52 +01:00
|
|
|
config = lib.mkDefault {
|
2017-10-07 00:39:25 +01:00
|
|
|
# Common firmware, i.e. for wifi cards
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
2010-09-25 10:32:37 +01:00
|
|
|
};
|
|
|
|
}
|