2017-02-17 15:40:54 -08:00
|
|
|
# List all devices which are _not_ detected by nixos-generate-config.
|
2010-09-25 02:32:37 -07:00
|
|
|
# Common devices are enabled by default.
|
2014-04-14 07:26:48 -07:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-09-25 02:32:37 -07:00
|
|
|
|
2014-04-14 07:26:48 -07:00
|
|
|
with lib;
|
2010-09-25 02:32:37 -07:00
|
|
|
|
|
|
|
{
|
2017-05-09 12:10:41 -07:00
|
|
|
hardware.enableRedistributableFirmware = true;
|
2010-09-25 02:32:37 -07:00
|
|
|
}
|