nixos-hardware/lenovo/legion/16ach6h/hybrid/default.nix

37 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2022-12-31 11:52:38 +01:00
{ lib, ... }:
{
imports = [
../../../../common/cpu/amd
2023-02-08 11:58:59 +01:00
../../../../common/cpu/amd/pstate.nix
../../../../common/gpu/amd
../../../../common/gpu/nvidia/prime.nix
../../../../common/pc/laptop
../../../../common/pc/laptop/ssd
../edid
];
2024-01-19 19:45:19 +01:00
# Still needs to load at some point if we want X11 to work
boot.kernelModules = [ "amdgpu" ];
# modesetting just doesn't work (on X11?), so get rid of it by only explicitly declaring nvidia
# Needed due to https://github.com/NixOS/nixos-hardware/commit/630a8e3e4eea61d35524699f2f59dbc64886357d
# See also https://github.com/NixOS/nixos-hardware/issues/628
# options.services.xserver.drivers will have a amdgpu entry from using the prime stuff in nixpkgs
services.xserver.videoDrivers = [ "nvidia" ];
hardware = {
amdgpu.loadInInitrd = lib.mkDefault false;
nvidia = {
modesetting.enable = lib.mkDefault true;
powerManagement.enable = lib.mkDefault true;
prime = {
2024-01-28 01:25:14 +01:00
amdgpuBusId = lib.mkDefault "PCI:5:0:0";
nvidiaBusId = "PCI:1:0:0";
};
};
};
2024-01-19 19:45:19 +01:00
}