Remove references to /root/test-firmware

This is no longer supported by systemd.

Changed files
+2 -5
nixos
modules
services
hardware
pkgs
os-specific
linux
+1 -3
nixos/modules/services/hardware/udev.nix
···
firmware to function). If multiple packages contain firmware
files with the same name, the first package in the list takes
precedence. Note that you must rebuild your system if you add
-
files to any of these directories. For quick testing,
-
put firmware files in <filename>/root/test-firmware</filename>
-
and add that directory to the list.
'';
apply = list: pkgs.buildEnv {
name = "firmware";
···
firmware to function). If multiple packages contain firmware
files with the same name, the first package in the list takes
precedence. Note that you must rebuild your system if you add
+
files to any of these directories.
'';
apply = list: pkgs.buildEnv {
name = "firmware";
+1 -2
pkgs/os-specific/linux/kernel/common-config.nix
···
${optionalString (versionAtLeast version "3.17") "NFC? n"}
-
# Enable firmware loading via udev. Only needed for non-declarative
-
# firmware in /root/test-firmware.
${optionalString (versionAtLeast version "3.17") ''
FW_LOADER_USER_HELPER_FALLBACK y
''}
···
${optionalString (versionAtLeast version "3.17") "NFC? n"}
+
# Enable firmware loading via udev (legacy).
${optionalString (versionAtLeast version "3.17") ''
FW_LOADER_USER_HELPER_FALLBACK y
''}