Merge pull request #1806 from detroyejr/thinkpad-p15v-gen3

lenovo-thinkpad-p15v-intel-gen3: init
This commit is contained in:
Jörg Thalheim 2026-03-31 04:41:45 +00:00 committed by GitHub
commit 91345ae723
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{ lib, ... }:
{
imports = [
../.
../../../common/pc/ssd
];
hardware.enableRedistributableFirmware = lib.mkDefault true;
hardware.trackpoint.device = lib.mkDefault "TPPS/2 Elan TrackPoint";
}

View file

@ -0,0 +1,5 @@
{
imports = [
../.
];
}

View file

@ -0,0 +1,14 @@
{ lib, ... }:
{
imports = [
../.
../../../../../common/cpu/intel/alder-lake
../../../../../common/gpu/nvidia/prime.nix
../../../../../common/gpu/nvidia/turing
];
hardware.nvidia.prime = {
intelBusId = lib.mkDefault "PCI:0:2:0";
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
};
}