Skip to content

Instantly share code, notes, and snippets.

View umgefahren's full-sized avatar

Hannes umgefahren

View GitHub Profile
@heywoodlh
heywoodlh / configuration.nix
Created September 17, 2024 17:42
Don't use fprint on NixOS with lid closed (Dell XPS 13 9310)
{ config, pkgs, ... }:
{
# Fingerprint
services.fprintd = {
enable = true;
package = pkgs.fprintd-tod;
tod.enable = true;
tod.driver = pkgs.libfprint-2-tod1-goodix;
};