Iwakura/modules/picom/home.nix
2021-08-23 10:42:53 +00:00

22 lines
332 B
Nix

{ pkgs, ... }: {
services.picom = {
enable = false;
activeOpacity = "1.0";
inactiveOpacity = "0.95";
blur = true;
fade = true;
fadeDelta = 5;
vSync = true;
backend = "glx";
opacityRule = [
"99:class_i ?= 'rofi'"
];
#extraOptions = ''
# corner-radius = 25;
#'';
};
}