mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
46 lines
953 B
Nix
46 lines
953 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs.hyprlock = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
general = {
|
||
|
disable_loading_bar = true;
|
||
|
grace = 300;
|
||
|
hide_cursor = true;
|
||
|
no_fade_in = false;
|
||
|
};
|
||
|
|
||
|
background = [{
|
||
|
monitor = "";
|
||
|
path = "screenshot";
|
||
|
blur_passes = 3;
|
||
|
blur_size = 8;
|
||
|
}];
|
||
|
|
||
|
input-field = [{
|
||
|
size = "200, 50";
|
||
|
position = "0, -80";
|
||
|
monitor = "";
|
||
|
dots_center = true;
|
||
|
fade_on_empty = false;
|
||
|
font_color = "rgb(202, 211, 245)";
|
||
|
inner_color = "rgb(91, 96, 120)";
|
||
|
outer_color = "rgb(24, 25, 38)";
|
||
|
outline_thickness = 5;
|
||
|
placeholder_text = ''<span foreground="##cad3f5">Password...</span>'';
|
||
|
shadow_passes = 2;
|
||
|
}];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.stubs.hyprlock = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/hypr/hyprlock.conf \
|
||
|
${./basic-configuration.conf}
|
||
|
'';
|
||
|
}
|