[thinkpad] Fingerprint for sudo and login. Upgraded hyprlock to unstable

This commit is contained in:
2025-04-18 17:53:28 +02:00
parent 9e96de997d
commit 31c25681c5
4 changed files with 33 additions and 24 deletions

View File

@ -0,0 +1,15 @@
{ pkgs, lib, ... }:
{
# TODO fingerprint prompt using $FPRINTPROMPT
programs.hyprlock = {
package = pkgs.unstable.hyprlock;
settings = {
auth."fingerprint:enabled" = true;
# Override removed settings shared config
general = lib.mkForce {
hide_cursor = true;
};
};
};
}