mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
40 lines
876 B
Nix
40 lines
876 B
Nix
|
{
|
||
|
programs.hyprlock = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
general = {
|
||
|
hide_cursor = true;
|
||
|
grace = 2;
|
||
|
};
|
||
|
|
||
|
background = {
|
||
|
color = "rgba(25, 20, 20, 1.0)";
|
||
|
path = "screenshot";
|
||
|
blur_passes = 2;
|
||
|
brightness = 0.5;
|
||
|
};
|
||
|
|
||
|
label = {
|
||
|
text = "パスワードをご入力ください";
|
||
|
color = "rgba(222, 222, 222, 1.0)";
|
||
|
font_size = 50;
|
||
|
font_family = "Noto Sans CJK JP";
|
||
|
position = "0, 70";
|
||
|
halign = "center";
|
||
|
valign = "center";
|
||
|
};
|
||
|
|
||
|
input-field = {
|
||
|
size = "50, 50";
|
||
|
dots_size = 0.33;
|
||
|
dots_spacing = 0.15;
|
||
|
outer_color = "rgba(25, 20, 20, 0)";
|
||
|
inner_color = "rgba(25, 20, 20, 0)";
|
||
|
font_color = "rgba(222, 222, 222, 1.0)";
|
||
|
placeholder_text = "パスワード";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|