Iwakura/modules/picom/home.nix

22 lines
332 B
Nix
Raw Normal View History

2021-04-27 18:47:09 -04:00
{ pkgs, ... }: {
services.picom = {
2021-08-23 06:42:53 -04:00
enable = false;
2021-04-27 18:47:09 -04:00
activeOpacity = "1.0";
2021-08-23 06:42:53 -04:00
inactiveOpacity = "0.95";
2021-04-27 18:47:09 -04:00
blur = true;
fade = true;
fadeDelta = 5;
vSync = true;
backend = "glx";
opacityRule = [
"99:class_i ?= 'rofi'"
];
2021-08-23 06:42:53 -04:00
#extraOptions = ''
# corner-radius = 25;
#'';
2021-04-27 18:47:09 -04:00
};
}