feat(swaylock): allow empty passwords to skip directly to fingerprint
parent
289c2fbe65
commit
9625c11ad0
|
@ -2,7 +2,7 @@
|
|||
let
|
||||
font.name = "DejaVu Sans Mono";
|
||||
font.size = 12.0;
|
||||
lock_command = "${pkgs.swaylock-effects}/bin/swaylock --daemonize --screenshots --effect-blur 8x2 --ignore-empty-password --show-failed-attempts";
|
||||
lock_command = "${pkgs.swaylock-effects}/bin/swaylock";
|
||||
swaymsg = "${pkgs.sway}/bin/swaymsg";
|
||||
in
|
||||
{
|
||||
|
@ -35,6 +35,13 @@ in
|
|||
programs.swaylock = {
|
||||
enable = true;
|
||||
package = pkgs.swaylock-effects;
|
||||
settings = {
|
||||
daemonize = true;
|
||||
screenshots = true;
|
||||
effect-blur = "8x2";
|
||||
ignore-empty-password = false;
|
||||
show-failed-attempts = true;
|
||||
};
|
||||
};
|
||||
|
||||
home.pointerCursor = {
|
||||
|
|
Loading…
Reference in New Issue