update flakes & fix

Former-commit-id: 9f1b464ce4
This commit is contained in:
Hadi
2024-11-16 11:57:00 +01:00
parent d7553fbce8
commit 7dc0964759
3 changed files with 91 additions and 62 deletions

View File

@@ -1,5 +1,5 @@
# Hyprlock is a lockscreen for Hyprland
{ config, ... }:
{ config, lib, ... }:
let
foreground = "rgba(216, 222, 233, 0.70)";
imageStr = toString config.stylix.image;
@@ -66,7 +66,7 @@ in {
];
# INPUT FIELD
input-field = [{
input-field = lib.mkForce {
monitor = "";
size = "300, 60";
outline_thickness = 2;
@@ -83,7 +83,7 @@ in {
position = "0, -250";
halign = "center";
valign = "center";
}];
};
};
};
}