diff --git a/README.md b/README.md index 3799b4a..d913362 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,7 @@ See code for all available configurations. | [Dell XPS 15 9560, nvidia only](dell/xps/15-9560/nvidia) | `` | | [Dell XPS 15 9500](dell/xps/15-9500) | `` | | [Dell XPS 15 9500, nvidia](dell/xps/15-9500/nvidia) | `` | +| [Dell XPS 17 9710, intel only](dell/xps/17-9710/intel) | `` | | [FriendlyARM NanoPC-T4](friendlyarm/nanopc-t4) | `` | | [Google Pixelbook](google/pixelbook) | `` | | [GPD MicroPC](gpd/micropc) | `` | diff --git a/dell/xps/17-9710/README.wiki b/dell/xps/17-9710/README.wiki new file mode 100644 index 0000000..e46168e --- /dev/null +++ b/dell/xps/17-9710/README.wiki @@ -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 + + +services.fwupd.enable = true; + + +Then use fwupdmgr to perform updates. + +=== Enable fingerprint reader === + +Activate the service + + +services.fprintd.enable = true; + diff --git a/dell/xps/17-9710/intel/README.wiki b/dell/xps/17-9710/intel/README.wiki new file mode 120000 index 0000000..4ba8dc7 --- /dev/null +++ b/dell/xps/17-9710/intel/README.wiki @@ -0,0 +1 @@ +../README.wiki \ No newline at end of file diff --git a/dell/xps/17-9710/intel/default.nix b/dell/xps/17-9710/intel/default.nix new file mode 100644 index 0000000..b07c609 --- /dev/null +++ b/dell/xps/17-9710/intel/default.nix @@ -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); +} diff --git a/flake.nix b/flake.nix index 27feba5..593513c 100644 --- a/flake.nix +++ b/flake.nix @@ -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;