mirror of
https://github.com/Andrey0189/nixos-config-reborn.git
synced 2025-09-15 10:06:00 +03:00
add hyprlock
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{
|
||||
imports = [
|
||||
./binds.nix
|
||||
./hyprlock.nix
|
||||
./main.nix
|
||||
];
|
||||
}
|
||||
|
36
home-manager/modules/hyprland/hyprlock.nix
Normal file
36
home-manager/modules/hyprland/hyprlock.nix
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
programs.hyprlock = {
|
||||
enable = true;
|
||||
settings = {
|
||||
general = {
|
||||
disable_loading_bar = true;
|
||||
grace = 300;
|
||||
hide_cursor = true;
|
||||
no_fade_in = false;
|
||||
};
|
||||
|
||||
background = [
|
||||
{
|
||||
path = "screenshot";
|
||||
blur_passes = 3;
|
||||
blur_size = 8;
|
||||
}
|
||||
];
|
||||
|
||||
input-field = [
|
||||
{
|
||||
size = "200, 50";
|
||||
position = "0, -80";
|
||||
monitor = "";
|
||||
dots_center = true;
|
||||
font_color = "rgb(235, 219, 178)";
|
||||
inner_color = "rgb(40, 40, 40)";
|
||||
outer_color = "rgb(60, 56, 54)";
|
||||
outline_thickness = 5;
|
||||
placeholder_text = "sussy baka";
|
||||
shadow_passes = 1;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user