Merge pull request #356 from NelsonJeppesen/xps17-9710

add xps 17 9710
This commit is contained in:
Jörg Thalheim 2022-01-12 05:36:37 +00:00 committed by GitHub
commit 87a35a0d58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 60 additions and 0 deletions

View File

@ -100,6 +100,7 @@ See code for all available configurations.
| [Dell XPS 15 9560, nvidia only](dell/xps/15-9560/nvidia) | `<nixos-hardware/dell/xps/15-9560/nvidia>` |
| [Dell XPS 15 9500](dell/xps/15-9500) | `<nixos-hardware/dell/xps/15-9500>` |
| [Dell XPS 15 9500, nvidia](dell/xps/15-9500/nvidia) | `<nixos-hardware/dell/xps/15-9500/nvidia>` |
| [Dell XPS 17 9710, intel only](dell/xps/17-9710/intel) | `<nixos-hardware/dell/xps/17-9710/intel>` |
| [FriendlyARM NanoPC-T4](friendlyarm/nanopc-t4) | `<nixos-hardware/friendlyarm/nanopc-t4>` |
| [Google Pixelbook](google/pixelbook) | `<nixos-hardware/google/pixelbook>` |
| [GPD MicroPC](gpd/micropc) | `<nixos-hardware/gpd/micropc>` |

View File

@ -0,0 +1,44 @@
= Dell XPS 17 9710 =
There are two major hardware variants. Intel-only and NVidia
This has only been tested with the Intel-only variant
== Firmware Configuration ==
Enter the bios by repeatedly pressing F2 when the laptop turns on
=== Before installation ===
These settings are needed both for booting the final install, and installer itself. Therefore, they must be done first.
==== Method One ====
* Click ''Restore Settings'' button a select ''BIOS Defaults'', not to be confused with ''Factory Settings''
==== Method Two ====
* ''Disable Secure Boot (but keep UEFI Boot).'' Thankfully doing so is as easy as changing any other simple setting.
* ''Disable Intel hardware RAID and use AHCI instead.'' Intel doesn't seem to provide a working linux driver for this
== Optional ==
=== Firmware upgrades ===
Note that this device is supported by [https://fwupd.org/ fwupd].
To perform firmware upgrades just activate the service
<code>
services.fwupd.enable = true;
</code>
Then use <code>fwupdmgr</code> to perform updates.
=== Enable fingerprint reader ===
Activate the service
<code>
services.fprintd.enable = true;
</code>

View File

@ -0,0 +1 @@
../README.wiki

View File

@ -0,0 +1,13 @@
{ lib, pkgs, ... }: {
imports = [
../../../../common/cpu/intel
../../../../common/pc/laptop
../../../../common/pc/ssd
];
# Includes the Wi-Fi and Bluetooth firmware
hardware.enableRedistributableFirmware = true;
# Requires at least 5.12 for working sound
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.12") (lib.mkDefault pkgs.linuxPackages_latest);
}

View File

@ -36,6 +36,7 @@
dell-xps-15-9560-nvidia = import ./dell/xps/15-9560/nvidia;
dell-xps-15-9500 = import ./dell/xps/15-9500;
dell-xps-15-9500-nvidia = import ./dell/xps/15-9500/nvidia;
dell-xps-17-9710-intel = import ./dell/xps/17-9710/intel;
friendlyarm-nanopc-t4 = import ./friendlyarm/nanopc-t4;
google-pixelbook = import ./google/pixelbook;
gpd-micropc = import ./gpd/micropc;