aboutsummaryrefslogtreecommitdiff
path: root/modules/home/desktop/components/picom/default.nix
blob: 2ad311a486009f2a4b87c7817fb9ae96b1520fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ options, config, lib, namespace, ... }:

with lib; with lib.${namespace}; let
  cfg = config.${namespace}.desktop.components.picom;
in {
  options.${namespace}.desktop.components.picom = with types; {
    enable = mkEnableOption "picom";
  };

  config = mkIf cfg.enable {
    services.picom = {
      enable = true;

      backend = "glx";
      vSync = true;

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

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

        corner-radius = 0;
      };
    };
  };
}