{ config, lib, pkgs, user, ... }: with lib; { config = mkIf (config.xserver.enable) { services.picom = { enable = true; fade = true; fadeDelta = 2; backend = "glx"; settings = { corner-radius = 8; blur = { method = "gaussian"; size = 10; deviation = 5.0; }; }; }; }; }