1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-20 11:33:34 +00:00
Dotfiles/nix/modules/picom.nix

24 lines
437 B
Nix
Raw Normal View History

2021-05-30 19:10:25 +00:00
{config, pkgs, ...}:
{
services.picom = {
# package = pkgs.nur.repos.reedrw.picom-next-ibhagwan;
enable = true;
#detect-rounded-corners = true;
backend = "glx";
shadow = true;
vSync = true;
activeOpacity = 1.0;
inactiveOpacity = 0.75 ;
experimentalBackends = true;
settings = {
blur = {
method = "kawase";
size = 50;
deviation = 7.0;
};
};
};
}