Files
nixos-hardware/msi/gl65/10SDR-492/default.nix
Peter Bittner 7d9552ef6b Replace symlink references by real path and delete symlink
The common/pc/laptop/ssd folder was apparently moved a level up and was
replaced by a symlink to keep things working. We can consolidate this now.
2025-05-05 11:17:15 +02:00

26 lines
526 B
Nix

{ lib, ... }:
{
imports = [
../../../common/pc/ssd
../../../common/cpu/intel/comet-lake
../../../common/gpu/nvidia/prime.nix
../../../common/gpu/nvidia/turing
../../../common/pc/laptop
];
hardware.bluetooth.enable = lib.mkDefault true;
hardware.graphics.enable = lib.mkDefault true;
hardware.nvidia = {
prime = {
# Bus ID of the Intel GPU.
intelBusId = lib.mkDefault "PCI:0:2:0";
# Bus ID of the NVIDIA GPU.
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
};
};
}