services: Add compositor picom

This commit is contained in:
Alexander Kobjolke 2024-02-16 23:10:32 +01:00
parent ba0a4ff306
commit efbdccacbb

View file

@ -0,0 +1,15 @@
{ 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;
};
}