nixos-config/home-manager/picom.nix

10 lines
133 B
Nix
Raw Normal View History

2024-10-17 02:29:48 +02:00
{ ... }:
{
services.picom = {
enable = true;
backend = "glx";
settings.refresh-rate = "144";
vSync = false;
};
}