nix-config/home/swaylock.nix
2023-06-17 11:20:26 -04:00

20 lines
371 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;
};
};
}