11.stylix/modules/hyprlock/hm.nix
NAHO 16df6b8448
treewide: rename mkTarget's configElements and extraOptions options
Rename mkTarget's 'configElements' argument to 'config' and
'extraOptions' to 'options' to provide a more transparent interface with
the underlying Nixpkgs module system.
2025-12-10 14:48:20 +01:00

40 lines
801 B
Nix

{
mkTarget,
config,
lib,
...
}:
mkTarget {
name = "hyprlock";
humanName = "Hyprlock";
options.useWallpaper = config.lib.stylix.mkEnableWallpaper "Hyprlock" true;
config = [
(
{ cfg, image }:
{
programs.hyprlock.settings.background.path = lib.mkIf cfg.useWallpaper "${
image
}";
}
)
(
{ colors }:
{
programs.hyprlock.settings = with colors; {
background = {
color = "rgb(${base00})";
};
input-field = {
outer_color = "rgb(${base03})";
inner_color = "rgb(${base00})";
font_color = "rgb(${base05})";
fail_color = "rgb(${base08})";
check_color = "rgb(${base0A})";
};
};
}
)
];
}