···11-# List all devices which are _not_ detected by nixos-generate-config.
22-# Common devices are enabled by default.
33-{ config, lib, pkgs, ... }:
44-55-with lib;
11+# Enables non-free firmware on devices not recognized by `nixos-generate-config`.
22+{ lib, ... }:
6374{
88- hardware.enableRedistributableFirmware = true;
55+ hardware.enableRedistributableFirmware = lib.mkDefault true;
96}