forked from mirrors/nixpkgs
47c214cc2a
It has been renamed to nixos-generate-config in 3ed4173
10 lines
192 B
Nix
10 lines
192 B
Nix
# List all devices which are _not_ detected by nixos-generate-config.
|
|
# Common devices are enabled by default.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
hardware.enableAllFirmware = true;
|
|
}
|