nix/home-manager/common/desktops/hyprland/components/swaylock.nix
iFargle c815717834
Some checks failed
update-flake-lock / update-flake-lock (push) Successful in 1m37s
deploy-rs / deploy-rs (push) Failing after 43s
Update swaylock blur
2024-01-07 22:41:46 +09:00

25 lines
620 B
Nix

{ pkgs, ... }: {
programs.swaylock = {
enable = true;
# swaylock-effects has extra effects like image blur and stuff.
package = pkgs.swaylock-effects;
settings = {
# All <color> options are of the form <rrggbb[aa]>.
# font-size = 96;
show-failed-attempts = true;
effect-blur = "20x8";
screenshots = true;
clock = true;
timestr = "%R";
datestr = "%a, %b %d";
grace = 5;
indicator = true;
indicator-radius = "130";
indicator-thickness = "12";
indicator-caps-lock = true;
disable-caps-lock-text = false;
};
};
}