2010-09-25 10:32:37 +01:00
|
|
|
# List all devices which are _not_ detected by nixos-hardware-scan.
|
|
|
|
# Common devices are enabled by default.
|
2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-09-25 10:32:37 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2010-09-25 10:32:37 +01:00
|
|
|
|
|
|
|
{
|
2013-08-14 02:32:28 +01:00
|
|
|
hardware.enableAllFirmware = true;
|
2010-09-25 10:32:37 +01:00
|
|
|
}
|