25 lines
382 B
Nix
25 lines
382 B
Nix
{ ... }:
|
|
let
|
|
theme = import ../theme.nix "light";
|
|
in
|
|
{
|
|
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 = theme.border-radius;
|
|
};
|
|
};
|
|
}
|