aboutsummaryrefslogtreecommitdiff
path: root/home/picom.nix
blob: 59f6939188e8d87c4c50f0e57502dfc53a89c3d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ ... }:

{
  services.picom = {
    enable = true;

    backend = "glx";
    vSync = true;

    settings = {
      blur = {
        method = "gaussian";
        size = 10;
        deviation  = 2;
      };

      blur-background-exclude = [
        "window_type = 'dock'"
      ];
    };
  };
}