lol

not-detected: use lib.mkDefault

authored by

Yegor Timoshenko and committed by
GitHub
6d5cb130 176380db

+3 -6
+3 -6
nixos/modules/installer/scan/not-detected.nix
··· 1 - # List all devices which are _not_ detected by nixos-generate-config. 2 - # Common devices are enabled by default. 3 - { config, lib, pkgs, ... }: 4 - 5 - with lib; 1 + # Enables non-free firmware on devices not recognized by `nixos-generate-config`. 2 + { lib, ... }: 6 3 7 4 { 8 - hardware.enableRedistributableFirmware = true; 5 + hardware.enableRedistributableFirmware = lib.mkDefault true; 9 6 }