Dell XPS 15 9500: enable fprintd

This commit is contained in:
Maddy Guthridge 2026-02-09 22:30:28 +11:00
parent 2889685785
commit 0252ff960b
No known key found for this signature in database
GPG key ID: 7E0BC9B633D9B2D9
2 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,4 @@
= Dell XPS 15 9550 = = Dell XPS 15 9500 =
== Tested Hardware == == Tested Hardware ==

View file

@ -1,4 +1,4 @@
{ lib, ... }: { lib, pkgs, ... }:
let let
thermald-conf = ./thermald-conf.xml; thermald-conf = ./thermald-conf.xml;
in in
@ -18,6 +18,13 @@ in
# Thermald doesn't have a default config for the 9500 yet, the one in this repo # Thermald doesn't have a default config for the 9500 yet, the one in this repo
# was generated with dptfxtract-static (https://github.com/intel/dptfxtract) # was generated with dptfxtract-static (https://github.com/intel/dptfxtract)
services.thermald.configFile = lib.mkDefault thermald-conf; services.thermald.configFile = lib.mkDefault thermald-conf;
# Enable fingerprint reader
services.fprintd = {
enable = true;
tod.enable = true;
tod.driver = pkgs.libfprint-2-tod1-goodix;
};
# WiFi speed is slow and crashes by default (https://bugzilla.kernel.org/show_bug.cgi?id=213381) # WiFi speed is slow and crashes by default (https://bugzilla.kernel.org/show_bug.cgi?id=213381)
# disable_11ax - required until ax driver support is fixed # disable_11ax - required until ax driver support is fixed