mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
13 lines
288 B
Nix
13 lines
288 B
Nix
|
{ lib, pkgs, ...}: {
|
||
|
imports = [
|
||
|
../../common/cpu/amd
|
||
|
../../common/cpu/amd/pstate.nix
|
||
|
../../common/gpu/amd
|
||
|
];
|
||
|
|
||
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
||
|
|
||
|
# If the wireless card is not replaced
|
||
|
# boot.initrd.availableKernelModules = [ "r8169" ];
|
||
|
}
|