20 lines
301 B
Nix
20 lines
301 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.picom = {
|
|
enable = true;
|
|
|
|
blur = true;
|
|
experimentalBackends = true;
|
|
fade = false;
|
|
shadow = true;
|
|
vSync = true;
|
|
extraOptions = ''
|
|
blur:
|
|
{
|
|
method = "gaussian";
|
|
size = 10;
|
|
deviation = 7.0;
|
|
}
|
|
'';
|
|
};
|
|
}
|