File tree Expand file tree Collapse file tree 5 files changed +34
-0
lines changed Expand file tree Collapse file tree 5 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ See code for all available configurations.
140140| [ Dell Latitude E7240] ( dell/latitude/e7240 ) | ` <nixos-hardware/dell/latitude/e7240> ` |
141141| [ Dell Optiplex 3050] ( dell/optiplex/3050 ) | ` <nixos-hardware/dell/optiplex/3050> ` |
142142| [ Dell Poweredge R7515] ( dell/poweredge/r7515 ) | ` <nixos-hardware/dell/poweredge/r7515> ` |
143+ | [ Dell Precision 3490] ( dell/precision/3490 ) | ` <nixos-hardware/dell/precision/3490> ` |
143144| [ Dell Precision 3541] ( dell/precision/3541 ) | ` <nixos-hardware/dell/precision/3541> ` |
144145| [ Dell Precision 5490] ( dell/precision/5490 ) | ` <nixos-hardware/dell/precision/5490> ` |
145146| [ Dell Precision 5530] ( dell/precision/5530 ) | ` <nixos-hardware/dell/precision/5530> ` |
Original file line number Diff line number Diff line change 1+ {
2+ imports = [
3+ ../cpu-only.nix
4+ ../../../gpu/intel/meteor-lake
5+ ] ;
6+ }
Original file line number Diff line number Diff line change 1+ {
2+ imports = [ ../. ] ;
3+
4+ hardware . intelgpu . vaapiDriver = "intel-media-driver" ;
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ imports = [
3+ ../../../common/cpu/intel/meteor-lake
4+ ../../../common/gpu/nvidia/ada-lovelace
5+ ../../../common/pc/laptop
6+ ] ;
7+
8+ boot . initrd . availableKernelModules = [
9+ "nvme"
10+ "sd_mod"
11+ "thunderbolt"
12+ "usb_storage"
13+ "vmd"
14+ "xhci_pci"
15+ ] ;
16+
17+ hardware . nvidia . prime = {
18+ intelBusId = "PCI:0:2:0" ;
19+ nvidiaBusId = "PCI:1:0:0" ;
20+ } ;
21+ }
Original file line number Diff line number Diff line change 8080 dell-latitude-e7240 = import ./dell/latitude/e7240 ;
8181 dell-optiplex-3050 = import ./dell/optiplex/3050 ;
8282 dell-poweredge-r7515 = import ./dell/poweredge/r7515 ;
83+ dell-precision-3490 = import ./dell/precision/3490 ;
8384 dell-precision-3541 = import ./dell/precision/3541 ;
8485 dell-precision-5490 = import ./dell/precision/5490 ;
8586 dell-precision-5530 = import ./dell/precision/5530 ;
You can’t perform that action at this time.
0 commit comments