nixos-config/home-manager/picom.nix

10 lines
131 B
Nix
Raw Normal View History

2024-10-17 02:29:48 +02:00
{ ... }:
{
services.picom = {
enable = true;
backend = "glx";
2024-11-29 23:04:37 +01:00
settings.refresh-rate = "60";
vSync = true;
2024-10-17 02:29:48 +02:00
};
}