summary refs log tree commit diff
path: root/nixos/modules/installer/scan/detected.nix
blob: 7e181acb93b1965690c6fdb605b2fd724793c82c (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.
{ config, lib, pkgs, ... }:

with lib;

{
  config = mkDefault {
    # Common firmware, i.e. for wifi cards
    hardware.enableRedistributableFirmware = true;
  };
}