Files
nixos-flake/home/picom.nix
2026-03-30 02:22:10 +09:00

19 lines
301 B
Nix

{ config, pkgs, ... }:
{
services.picom = {
enable = true;
backend = "egl";
fade = true;
fadeDelta = 5;
fadeExclude = [
"window_type *= 'menu'"
"focused = 1"
];
inactiveOpacity = 0.9;
shadow = true;
shadowExclude = [
"focused = 1"
];
};
}