{ pkgs, config, ... }: { home.packages = with pkgs; [ hyprlock ]; xdg.configFile."hypr/hyprlock.conf".text = '' background { monitor = path = $HOME/.config/wallpaper/default.png # only png supported for now color = rgb(${config.theme.colors.bg}) # all these options are taken from hyprland, see https://wiki.hyprland.org/Configuring/Variables/#blur for explanations blur_size = 4 blur_passes = 3 # 0 disables blurring noise = 0.0117 contrast = 1.3000 # Vibrant!!! brightness = 0.8000 vibrancy = 0.2100 vibrancy_darkness = 0.0 } input-field { monitor = size = 250, 50 outline_thickness = 3 dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8 dots_spacing = 0.64 # Scale of dots' absolute size, 0.0 - 1.0 dots_center = true outer_color = rgb(${config.theme.colors.primary-bg}) inner_color = rgb(${config.theme.colors.bg}) font_color = rgb(${config.theme.colors.fg}) fade_on_empty = true placeholder_text = Password... # Text rendered in the input box when it's empty. hide_input = false position = 0, 50 halign = center valign = bottom } # Current time label { monitor = text = cmd[update:1000] echo " $(date +"%H:%M:%S") " color = rgb(${config.theme.colors.fg}) font_size = 64 font_family = ${config.theme.font} position = 0, 16 halign = center valign = center } # User label label { monitor = text = Hey $USER color = rgb(${config.theme.colors.fg}) font_size = 20 font_family = ${config.theme.font} position = 0, 0 halign = center valign = center } # Type to unlock label { monitor = text = Type to unlock! color = rgb(${config.theme.colors.fg}) font_size = 16 font_family = ${config.theme.font} position = 0, 30 halign = center valign = bottom } ''; }