15 lines
239 B
Nix
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"
|
|
};
|
|
}
|