15 lines
286 B
Nix
15 lines
286 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config.services.picom = {
|
|
enable = true;
|
|
activeOpacity = 1.0;
|
|
inactiveOpacity = 0.8;
|
|
backend = "glx";
|
|
fade = true;
|
|
fadeDelta = 5;
|
|
opacityRules = [ "100:name *= 'i3lock'" ];
|
|
shadow = true;
|
|
shadowOpacity = 0.75;
|
|
};
|
|
}
|