Merge pull request #42136 from NixOS/yegortimoshenko-patch-5

not-detected: use lib.mkDefault
This commit is contained in:
xeji 2018-06-18 00:14:25 +02:00 committed by GitHub
commit e8f1ebc213
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,6 @@
# List all devices which are _not_ detected by nixos-generate-config. # Enables non-free firmware on devices not recognized by `nixos-generate-config`.
# Common devices are enabled by default. { lib, ... }:
{ config, lib, pkgs, ... }:
with lib;
{ {
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = lib.mkDefault true;
} }