configuration.nix/home/wm/addon/hyprlock.nix

16 lines
248 B
Nix
Raw Normal View History

2024-05-12 18:38:07 +05:30
_: {
programs.hyprlock = {
enable = true;
2024-05-12 19:05:49 +05:30
settings = {
general = {
ignore_empty_input = true;
};
background = {
path = "screenshot";
blur_passes = 2;
blur_size = 5;
};
};
2024-05-12 18:38:07 +05:30
};
}