mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-10-31 22:17:31 +00:00
24 lines
437 B
Plaintext
24 lines
437 B
Plaintext
|
{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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|