mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
3df126dbf7
All available options were just enabling hardware.enableRedistributableFirmware. There were nix files without modules which weren't referenced anywhere.
13 lines
271 B
Nix
13 lines
271 B
Nix
# 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;
|
|
};
|
|
}
|