mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
9 lines
204 B
Nix
9 lines
204 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.enableRedistributableFirmware = true;
|
|
}
|