Files
nix-config/home/services/picom/default.nix
2024-12-31 04:29:58 -05:00

15 lines
239 B
Nix

{
config,
pkgs,
...
}: {
services.picom = {
enable = true;
shadow = false;
fade = false;
activeOpacity = 1.0;
inactiveOpacity = 1.0; # yeah, i'm a freak like that
backend = "xrender"; # can use "glx"
};
}