mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
msigl65: add initial configuration (#1106)
Co-authored-by: Mic92 <96200+Mic92@users.noreply.github.com>
This commit is contained in:
26
msi/gl65/10SDR-492/default.nix
Normal file
26
msi/gl65/10SDR-492/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../../../common/pc/laptop/ssd
|
||||
../../../common/cpu/intel
|
||||
../../../common/gpu/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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user