initial commit

This commit is contained in:
GammaKinematics 2026-03-30 13:10:42 +07:00
commit 90cff4f16a
59 changed files with 6855 additions and 0 deletions

View file

@ -0,0 +1,39 @@
# Hyprlock - Screen locker configuration
{ pkgs, ... }:
{
# Disable Stylix's hyprlock theming (we use screenshot blur)
stylix.targets.hyprlock.enable = false;
programs.hyprlock = {
enable = true;
package = pkgs.hyprlock;
settings = {
general = {
hide_cursor = true;
grace = 5; # seconds before lock takes effect
};
background = [
{
path = "screenshot";
blur_passes = 3;
blur_size = 8;
}
];
input-field = [
{
size = "200, 50";
position = "0, -80";
monitor = "";
dots_center = true;
fade_on_empty = false;
outline_thickness = 2;
placeholder_text = "Password...";
shadow_passes = 2;
}
];
};
};
}