mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
17 lines
305 B
Nix
17 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;
|
|
}
|