dotfiles/home/features/desktop/common/wayland-wm/swaylock.nix

22 lines
462 B
Nix
Raw Normal View History

2023-09-29 14:16:09 +00:00
{ config, pkgs, ... }: {
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
effect-blur = "20x3";
fade-in = 0.1;
font = config.fontProfiles.regular.family;
font-size = 15;
line-uses-inside = true;
disable-caps-lock-text = true;
indicator-caps-lock = true;
indicator-radius = 40;
indicator-idle-visible = true;
indicator-y-position = 1000;
};
};
}