https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
6 lines
164 B
Nix
6 lines
164 B
Nix
# Enables non-free firmware on devices not recognized by `nixos-generate-config`.
|
|
{ lib, ... }:
|
|
|
|
{
|
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
|
}
|