AquaticOS/modules/programs/hyprland/config/theme.nix

30 lines
No EOL
634 B
Nix

{ ... }:
{
flake.modules.homeManager.hyprland =
{
wayland.windowManager.hyprland = {
settings = {
config = {
decoration = {
rounding = 10;
blur = {
enabled = true;
size = 3;
passes = 1;
};
shadow = {
enabled = true;
range = 4;
render_power = 3;
color = "rgba(1a1a1aee)";
};
};
};
env = [
{ _args = [ "XCURSOR_SIZE" "24" ]; }
{ _args = [ "HYPRCURSOR_SIZE" "24" ]; }
];
};
};
};
}