mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 08:47:13 +08:00
dell-precision-3490: init module
This commit is contained in:
committed by
mergify[bot]
parent
c06d50adeb
commit
72081c9fbb
@@ -140,6 +140,7 @@ See code for all available configurations.
|
||||
| [Dell Latitude E7240](dell/latitude/e7240) | `<nixos-hardware/dell/latitude/e7240>` |
|
||||
| [Dell Optiplex 3050](dell/optiplex/3050) | `<nixos-hardware/dell/optiplex/3050>` |
|
||||
| [Dell Poweredge R7515](dell/poweredge/r7515) | `<nixos-hardware/dell/poweredge/r7515>` |
|
||||
| [Dell Precision 3490](dell/precision/3490) | `<nixos-hardware/dell/precision/3490>` |
|
||||
| [Dell Precision 3541](dell/precision/3541) | `<nixos-hardware/dell/precision/3541>` |
|
||||
| [Dell Precision 5490](dell/precision/5490) | `<nixos-hardware/dell/precision/5490>` |
|
||||
| [Dell Precision 5530](dell/precision/5530) | `<nixos-hardware/dell/precision/5530>` |
|
||||
|
||||
6
common/cpu/intel/meteor-lake/default.nix
Normal file
6
common/cpu/intel/meteor-lake/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
imports = [
|
||||
../cpu-only.nix
|
||||
../../../gpu/intel/meteor-lake
|
||||
];
|
||||
}
|
||||
5
common/gpu/intel/meteor-lake/default.nix
Normal file
5
common/gpu/intel/meteor-lake/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
imports = [ ../. ];
|
||||
|
||||
hardware.intelgpu.vaapiDriver = "intel-media-driver";
|
||||
}
|
||||
21
dell/precision/3490/default.nix
Normal file
21
dell/precision/3490/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
imports = [
|
||||
../../../common/cpu/intel/meteor-lake
|
||||
../../../common/gpu/nvidia/ada-lovelace
|
||||
../../../common/pc/laptop
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"nvme"
|
||||
"sd_mod"
|
||||
"thunderbolt"
|
||||
"usb_storage"
|
||||
"vmd"
|
||||
"xhci_pci"
|
||||
];
|
||||
|
||||
hardware.nvidia.prime = {
|
||||
intelBusId = "PCI:0:2:0";
|
||||
nvidiaBusId = "PCI:1:0:0";
|
||||
};
|
||||
}
|
||||
@@ -80,6 +80,7 @@
|
||||
dell-latitude-e7240 = import ./dell/latitude/e7240;
|
||||
dell-optiplex-3050 = import ./dell/optiplex/3050;
|
||||
dell-poweredge-r7515 = import ./dell/poweredge/r7515;
|
||||
dell-precision-3490 = import ./dell/precision/3490;
|
||||
dell-precision-3541 = import ./dell/precision/3541;
|
||||
dell-precision-5490 = import ./dell/precision/5490;
|
||||
dell-precision-5530 = import ./dell/precision/5530;
|
||||
|
||||
Reference in New Issue
Block a user