dotfiles/nixcfgs/users/js0ny/programs/desktop/wayland-wm/swaylock.nix

16 lines
340 B
Nix

{pkgs, ...}: {
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
ignore-empty-password = true;
show-failed-attempts = true;
clock = true;
indicator = true;
indicator-radius = 100;
indicator-thickness = 7;
fade-in = 0.2;
grace = 2;
};
};
}