16 lines
254 B
Nix
16 lines
254 B
Nix
{...}: {
|
|
services.picom = {
|
|
enable = true;
|
|
backend = "glx";
|
|
activeOpacity = 1.0;
|
|
inactiveOpacity = 1.0;
|
|
menuOpacity = 1.0;
|
|
settings = {
|
|
blur = {
|
|
method = "dual_kawase";
|
|
strength = 5;
|
|
};
|
|
};
|
|
};
|
|
}
|