mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
17 lines
364 B
Nix
17 lines
364 B
Nix
{pkgs, ...}: {
|
|
programs.swaylock = {
|
|
enable = true;
|
|
package = pkgs.swaylock-effects;
|
|
settings = {
|
|
screenshots = true;
|
|
indicator = true;
|
|
clock = true;
|
|
grace = 10;
|
|
fade-in = 2;
|
|
effect-blur = "7x5";
|
|
effect-vignette = "0.5:0.5";
|
|
show-failed-attempts = true;
|
|
font = "Monaspace Krypton";
|
|
};
|
|
};
|
|
}
|