chore: init

This commit is contained in:
Nick 2025-10-01 19:51:55 -05:00
commit 1b2c1ea359
891 changed files with 37053 additions and 0 deletions

View file

@ -0,0 +1,55 @@
{ flake, ... }:
let
inherit (flake.config.aesthetics.themes) cursor;
in
{
cursor = {
size = cursor.size;
theme = "catppuccin-macchiato-dark-cursors";
};
animations = {
enable = true;
config-notification-open-close.kind = {
spring = {
damping-ratio = 0.600000;
epsilon = 0.001000;
stiffness = 1000;
};
};
horizontal-view-movement.kind = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 800;
};
};
window-close.kind = {
easing = {
curve = "ease-out-quad";
duration-ms = 150;
};
};
window-open.kind = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 800;
};
};
window-resize.kind = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 800;
};
};
workspace-switch.kind = {
spring = {
damping-ratio = 1.000000;
epsilon = 0.000100;
stiffness = 1000;
};
};
};
}