nixos/home/common/optional/desktop/dwm/picom.nix

18 lines
343 B
Nix
Raw Normal View History

2024-06-15 01:20:42 +01:00
{
home.file.".config/picom/picom.conf" = {
recursive = true;
text = ''
vsync = true;
backend = "xrender";
shadow = true;
shadow-radius = 10;
shadow-offset-x = -5;
shadow-offset-y = -5;
fading = true;
fade-in-step = 0.2;
fade-out-step = 0.2;
fade-delta = 50;
'';
};
}