commit
87a35a0d58
|
@ -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>` |
|
||||
|
|
44
dell/xps/17-9710/README.wiki
Normal file
44
dell/xps/17-9710/README.wiki
Normal 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>
|
1
dell/xps/17-9710/intel/README.wiki
Symbolic link
1
dell/xps/17-9710/intel/README.wiki
Symbolic link
|
@ -0,0 +1 @@
|
|||
../README.wiki
|
13
dell/xps/17-9710/intel/default.nix
Normal file
13
dell/xps/17-9710/intel/default.nix
Normal 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);
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue