nix-config/home/swaylock.nix

21 lines
372 B
Nix
Raw Normal View History

{ pkgs, ... }:
2023-06-17 02:16:19 +02:00
{
programs.swaylock = {
package = pkgs."swaylock-effects";
2023-06-17 02:16:19 +02:00
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;
};
};
}