NixOS-Vista/nixosVista/homeManager/hyprland/style/animation.nix
2026-02-12 15:32:45 +01:00

27 lines
590 B
Nix

{
config,
lib,
nixosVista,
...
}: let
cfg = nixosVista.hyprland.style.animation;
animationLines =
lib.concatStringsSep "\n " cfg.config;
in {
config = lib.mkIf nixosVista.enable {
#warnings = [ ">>> HYPRLAND Animations MODULE ACTIVE <<<" ];
nixosVista.hyprland.fragments.animation = ''
############################################################
# Animations
############################################################
animations {
enabled = ${lib.boolToString cfg.enabled}
${animationLines}
}
'';
};
}