mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 10:39:42 +01:00
9a35571829
- Can't seem to d/l the K1535 board firmware directly from Killer Networking?
8 lines
170 B
Nix
8 lines
170 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
hardware.enableAllFirmware = true;
|
|
hardware.firmware = [
|
|
# TODO: Wrap with an option:
|
|
(pkgs.callPackage ./ath10k.nix {})
|
|
];
|
|
}
|