![Eelco Dolstra](/assets/img/avatar_default.png)
Note that since the configuration produced by nixos-hardware-scan includes not-detected.nix, you get all firmware when following the regular installation procedure. Issue #87.
9 lines
190 B
Nix
9 lines
190 B
Nix
# List all devices which are _not_ detected by nixos-hardware-scan.
|
|
# Common devices are enabled by default.
|
|
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
hardware.enableAllFirmware = true;
|
|
}
|