nix-config/home/swaylock.nix
2023-10-29 15:11:57 -04:00

21 lines
370 B
Nix

{ pkgs, ... }:
{
programs.swaylock = {
package = pkgs.swaylock-effects;
settings = {
show-keyboard-layout = true;
daemonize = true;
effect-blur = "20x2";
clock = true;
indicator = true;
font-size = 25;
indicator-radius = 85;
indicator-thickness = 16;
screenshots = true;
fade-in = 1;
};
};
}