hyprlock: add bezier to importantPrefixes

Since hyprwm/hyprlock@00d2cbf hyprlock supports the animation and bezier
keywords from Hyprland. But, bezier needs to be defined before an
animation can use it.
This commit is contained in:
Austin Horstman
2025-01-14 13:37:43 -06:00
parent fc52a210b6
commit a1f180af17

View File

@@ -102,9 +102,9 @@ in {
importantPrefixes = lib.mkOption {
type = with lib.types; listOf str;
default = [ "$" "monitor" "size" ]
default = [ "$" "bezier" "monitor" "size" ]
++ lib.optionals cfg.sourceFirst [ "source" ];
example = [ "$" "monitor" "size" ];
example = [ "$" "bezier" "monitor" "size" ];
description = ''
List of prefix of attributes to source at the top of the config.
'';