1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-06 00:05:05 +01:00

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
No known key found for this signature in database

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.
'';