mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
18 lines
305 B
Nix
18 lines
305 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../../../common/cpu/amd
|
||
|
../../../common/gpu/amd
|
||
|
../../../common/pc/laptop
|
||
|
../../../common/pc/laptop/ssd
|
||
|
];
|
||
|
|
||
|
# TSC is unstable
|
||
|
boot.kernelParams = [ "notsc" "trace_clock=local" ];
|
||
|
|
||
|
hardware.enableRedistributableFirmware = mkDefault true;
|
||
|
}
|