blob: 0aac9348d9d3625313d7eee97e92972afdc7eebc (
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, ... }:
#TODO: move somewhere else
# most likely will move several things into modules/desktop/components or similar
with lib; with lib.${namespace}; let
cfg = config.${namespace}.apps.picom;
in {
options.${namespace}.apps.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'"
];
};
};
};
}
|