nix/home-manager/common/desktops/hyprland/components/swaylock.nix

25 lines
552 B
Nix
Raw Normal View History

2024-05-05 18:54:40 +09:00
{ pkgs, ... }: {
2024-01-03 22:25:06 +09:00
programs.swaylock = {
enable = true;
2024-05-05 18:54:40 +09:00
package = pkgs.swaylock-effects;
2024-01-03 22:25:06 +09:00
settings = {
# All <color> options are of the form <rrggbb[aa]>.
2024-01-07 12:55:25 +09:00
# font-size = 96;
2024-01-03 22:25:06 +09:00
show-failed-attempts = true;
2024-05-08 08:02:08 +09:00
effect-blur = "30x8";
2024-01-03 22:25:06 +09:00
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;
};
};
}