1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-01 17:08:32 +02:00
nixos-hardware/lenovo/legion/16ach6h/default.nix

26 lines
480 B
Nix
Raw Normal View History

2022-11-24 16:39:20 +01:00
{ lib, ... }:
{
2022-11-23 20:36:56 +01:00
imports = [
../../../common/cpu/amd
../../../common/gpu/amd
../../../common/gpu/nvidia/prime.nix
../../../common/pc/laptop
../../../common/pc/laptop/ssd
./edid
2022-11-23 20:36:56 +01:00
];
hardware.amdgpu.loadInInitrd = lib.mkDefault false;
hardware.nvidia = {
powerManagement.enable = lib.mkDefault true;
prime = {
amdgpuBusId = "PCI:6:0:0";
nvidiaBusId = "PCI:1:0:0";
};
2022-11-23 20:36:56 +01:00
};
services.thermald.enable = lib.mkDefault true;
}