mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
10 lines
204 B
Nix
10 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;
|
|
}
|