23 lines
446 B
Nix
23 lines
446 B
Nix
{
|
|
programs.hyprlock.enable = true;
|
|
programs.hyprlock.settings = {
|
|
general = {
|
|
disable_loading_bar = true;
|
|
hide_cursor = true;
|
|
ignore_empty_input = true;
|
|
};
|
|
|
|
input-field = [
|
|
{
|
|
size = "200, 50";
|
|
position = "0, -80";
|
|
monitor = "";
|
|
dots_center = true;
|
|
fade_on_empty = false;
|
|
outline_thickness = 5;
|
|
placeholder_text = "Password...";
|
|
}
|
|
];
|
|
};
|
|
}
|