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

18 lines
282 B
Nix

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