mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
16 lines
340 B
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;
|
|
};
|
|
};
|
|
}
|