Chore: alejandra

This commit is contained in:
Peritia 2026-03-02 16:44:59 +01:00
parent fa809ab749
commit af9c0483fb

View file

@ -6,21 +6,14 @@
}: let }: let
root = nixosVista; root = nixosVista;
cfg = root.hyprlock; cfg = root.hyprlock;
in { in {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
# warnings = [">>> HYPRLOCK ACTIVE <<<"]; # warnings = [">>> HYPRLOCK ACTIVE <<<"];
programs.hyprlock = { programs.hyprlock = {
enable = true; enable = true;
settings = { settings = {
general = { general = {
# does not exsist: # does not exsist:
# disable_loading_bar = true; # disable_loading_bar = true;
@ -31,13 +24,17 @@ programs.hyprlock = {
# ===== Background (Glass Blur Style) ===== # ===== Background (Glass Blur Style) =====
background = [ background = [
{ {
path = "screenshot"; # Uses current blurred screen path = "screenshot";
blur_passes = 3;
blur_size = 6; blur_passes = 7;
noise = 0.01; blur_size = 18;
contrast = 1.2;
brightness = 0.85; noise = 0.03;
vibrancy = 0.15; contrast = 1.4;
brightness = 0.65;
vibrancy = 0.35;
vibrancy_darkness = 0.3;
} }
]; ];
@ -99,8 +96,5 @@ programs.hyprlock = {
]; ];
}; };
}; };
}; };
} }