Iwakura/modules/picom/home.nix

22 lines
327 B
Nix
Raw Normal View History

2021-04-27 18:47:09 -04:00
{ pkgs, ... }: {
services.picom = {
enable = true;
activeOpacity = "1.0";
inactiveOpacity = "0.85";
blur = true;
fade = true;
fadeDelta = 5;
vSync = true;
backend = "glx";
opacityRule = [
"99:class_i ?= 'rofi'"
];
extraOptions = ''
corner-radius = 6;
2021-04-27 18:47:09 -04:00
'';
};
}