aboutsummaryrefslogtreecommitdiff
path: root/services/picom.nix
blob: 5def96a3122e10e15c2e53b197b9129062179b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config
, pkgs
, ...
}:

{
  services.picom = {
    enable = true;
    backend = "glx";
    fade = true;
    fadeDelta = 10;
    fadeSteps = [ "0.04" "0.04" ];
    shadow = false;
  };
}