nixpkgs-odroid-hc4/nixos/modules/installer/scan/detected.nix
2025-12-20 09:59:59 +11:00

12 lines
257 B
Nix

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