nixpkgs/nixos/modules/installer/scan/detected.nix
2024-09-15 10:43:45 +02:00

10 lines
249 B
Nix

# List all devices which are detected by nixos-generate-config.
# Common devices are enabled by default.
{ lib, ... }:
{
config = lib.mkDefault {
# Common firmware, i.e. for wifi cards
hardware.enableRedistributableFirmware = true;
};
}