blob: 698e06cd220c1913eec105a19889d647ff6d0b16 (
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
|
{ 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'"
];
};
};
};
}
|