1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-08 14:03:35 +00:00
Dotfiles/nix/modules/picom.nix
2021-05-30 22:10:25 +03:00

24 lines
437 B
Nix

{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;
};
};
};
}