19 lines
427 B
Nix
19 lines
427 B
Nix
|
{
|
||
|
programs.swaylock = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
ignore-empty-password = true;
|
||
|
show-failed-attempts = true;
|
||
|
indicator-caps-lock = true;
|
||
|
color = "000000";
|
||
|
ring-color = "111111";
|
||
|
line-color = "00000000";
|
||
|
inside-color = "00000088";
|
||
|
separator-color = "00000000";
|
||
|
key-hl-color = "000033";
|
||
|
indicator-radius = 100;
|
||
|
indicator-thickness = 12;
|
||
|
};
|
||
|
};
|
||
|
}
|