marleyos/modules/home/programs/wayland/hyprlock/default.nix

36 lines
720 B
Nix
Raw Normal View History

2025-01-14 04:31:44 +00:00
{
config,
lib,
...
}: let
cfg = config.marleyos.programs.hyprlock;
in {
options.marleyos.programs.hyprlock.enable = lib.mkEnableOption "hyprlock";
config = lib.mkIf cfg.enable {
programs.hyprlock = {
enable = true;
settings = {
general = {
disable_loading_bar = true;
grace = 10;
hide_cursor = true;
no_fade_in = false;
};
input-field = {
size = "200, 50";
position = "0, -80";
monitor = "";
dots_center = true;
fade_on_empty = false;
outline_thickness = 5;
placeholder_text = "password...";
shadow_passes = 2;
};
2025-01-14 04:31:44 +00:00
};
};
};
}