nixos-configs/modules/hyprland/hyprlock.nix
matt1432 477ef7759a
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hypr): switch from swaylock to hyprlock
2024-03-03 17:18:59 -05:00

49 lines
980 B
Nix

{
config,
hyprlock,
lib,
...
}: let
inherit (lib) optionalString;
inherit (config.vars) mainMonitor;
monitor = optionalString (mainMonitor != null) mainMonitor;
in {
imports = [hyprlock.homeManagerModules.default];
programs.hyprlock = {
enable = true;
general = {
hide_cursor = false;
};
backgrounds = [
{
path = "screenshot";
blur_size = 5;
blur_passes = 2;
vibrancy_darkness = 0.0;
}
];
input-fields = [
{
inherit monitor;
fade_on_empty = false;
outer_color = "rgba(10, 10, 10, 1.0)";
inner_color = "rgb(151515)";
font_color = "rgba(240, 240, 240, 1.0)"; # This is the dot color
placeholder_text = ''<span foreground="##cccccc" style="italic">Input Password...</span>'';
}
];
labels = [
{
inherit monitor;
text = "<i> Groovy </i>";
font_family = "Ubuntu Mono";
}
];
};
}