summary refs log tree commit diff
path: root/nixos/modules/installer/scan/detected.nix
blob: 5c5fba56f517847e77b65b97b05649d3e7331e7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# 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;
  };
}