nixos/home/swaylock/default.nix

19 lines
446 B
Nix
Raw Normal View History

{pkgs, ...}: {
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
# Settings are specifically for swaylock-effects
settings = {
indicator-radius = 100;
indicator-thickness = 10;
indicator-caps-lock = true;
ignore-empty-password = true;
show-failed-attempts = true;
effect-blur = "5x3";
effect-vignette = "0.5:0.5";
2024-03-31 13:19:33 +01:00
grace = 2;
fade-in = 0.2;
};
};
}