nixos/home/swaylock/home.nix

25 lines
493 B
Nix
Raw Normal View History

2024-02-14 13:04:17 +08:00
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
indicator-caps-lock = true;
font-size = 20;
ignore-empty-password = true;
show-failed-attempts = true;
color = mkDefault "#00000000";
# Ring
indicator-radius = 115;
# Swaylock-effects specific settings
clock = true;
timestr = "%r";
grace = 2;
};
};
}