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:
parent
fc52a210b6
commit
a1f180af17
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
'';
|
||||
|
|
Loading…
Add table
Reference in a new issue