nixos-hardware/dell/inspiron/7405/default.nix

18 lines
305 B
Nix
Raw Normal View History

2022-09-10 05:45:13 +02:00
{ 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;
}