34 lines
550 B
Nix
34 lines
550 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
wayland.windowManager.hyprland.settings = {
|
|
decoration = {
|
|
rounding = 10;
|
|
rounding_power = 2;
|
|
active_opacity = 1.0;
|
|
inactive_opacity = 1.0;
|
|
|
|
dim_inactive = true;
|
|
dim_strength = 0.1;
|
|
dim_special = 0.8;
|
|
|
|
shadow = {
|
|
enabled = true;
|
|
range = 4;
|
|
render_power = 3;
|
|
color = "rgba(1a1a1aee)";
|
|
};
|
|
|
|
blur = {
|
|
enabled = true;
|
|
size = 3;
|
|
passes = 1;
|
|
vibrancy = 0.1696;
|
|
};
|
|
};
|
|
};
|
|
}
|