summaryrefslogtreecommitdiff
path: root/services/compton.nix
blob: 57a4d816827dcda1ba9de4dab4acce1ac18c14ab (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, ... }:
{
  # Enable Compton visual effects
  services.compton = {
    enable = true;
    fade = true;
    inactiveOpacity = "0.9";
    shadow = true;
    fadeDelta = 4;
  };
}