mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
12 lines
282 B
Nix
12 lines
282 B
Nix
{ lib, ...}: {
|
|
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" ];
|
|
}
|