mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 17:27:14 +08:00
9 lines
170 B
Nix
9 lines
170 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
hardware.enableAllFirmware = true;
|
|
hardware.firmware = [
|
|
# TODO: Wrap with an option:
|
|
(pkgs.callPackage ./ath10k.nix {})
|
|
];
|
|
}
|