2022-12-31 11:52:38 +01:00
|
|
|
{ lib, ... }:
|
2022-12-19 15:55:29 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../../../../common/cpu/amd
|
2023-02-08 11:58:59 +01:00
|
|
|
../../../../common/cpu/amd/pstate.nix
|
2024-06-16 15:42:26 +02:00
|
|
|
../../../../common/cpu/amd/zenpower.nix
|
2022-12-19 15:55:29 +01:00
|
|
|
../../../../common/gpu/amd
|
|
|
|
../../../../common/gpu/nvidia/prime.nix
|
2024-09-03 21:32:16 +02:00
|
|
|
../../../../common/gpu/nvidia/ampere
|
2022-12-19 15:55:29 +01:00
|
|
|
../../../../common/pc/laptop
|
|
|
|
../../../../common/pc/laptop/ssd
|
2024-03-18 16:10:15 +01:00
|
|
|
../edid
|
2022-12-19 15:55:29 +01:00
|
|
|
];
|
|
|
|
|
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" ];
|
|
|
|
|
2022-12-19 15:55:29 +01:00
|
|
|
hardware = {
|
2024-06-27 00:51:35 +02:00
|
|
|
amdgpu.initrd.enable = false;
|
2022-12-19 15:55:29 +01:00
|
|
|
|
|
|
|
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";
|
2022-12-19 15:55:29 +01:00
|
|
|
nvidiaBusId = "PCI:1:0:0";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-01-19 19:45:19 +01:00
|
|
|
}
|