nixos-config/config/modules/bspwm/picom.nix

24 lines
358 B
Nix

{ ... }:
let
theme = import ../theme.nix "light";
in
{
services.picom = {
enable = true;
backend = "glx";
activeOpacity = 1;
inactiveOpacity = 1;
vSync = true;
settings = {
blur = {
method = "gaussian";
size = 50;
deviation = 10.0;
};
corner-radius = theme.border-radius;
};
};
}