22 lines
317 B
Nix
22 lines
317 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
services.picom = {
|
||
|
enable = true;
|
||
|
backend = "glx";
|
||
|
|
||
|
activeOpacity = 1;
|
||
|
inactiveOpacity = 0.75;
|
||
|
shadow = true;
|
||
|
vSync = true;
|
||
|
|
||
|
settings = {
|
||
|
blur = {
|
||
|
method = "gaussian";
|
||
|
size = 50;
|
||
|
deviation = 10.0;
|
||
|
};
|
||
|
corner-radius = 15;
|
||
|
};
|
||
|
};
|
||
|
}
|