add xps 17 9710

This commit is contained in:
Nelson Jeppesen
2022-01-08 18:54:11 -08:00
parent 46df95ca81
commit 346c13e609
5 changed files with 60 additions and 0 deletions

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);
}