summaryrefslogtreecommitdiff
path: root/services/compton.nix
blob: b10ef0b02d248b9e100639b86109f3501866855f (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;
  };
}