nixos-config/home-manager/picom.nix

10 lines
147 B
Nix
Raw Normal View History

2024-12-03 23:55:42 +01:00
{ config, ... }:
2024-10-17 02:29:48 +02:00
{
services.picom = {
enable = true;
backend = "glx";
2024-12-03 23:55:42 +01:00
settings.refresh-rate = config.rate;
vSync = false;
2024-10-17 02:29:48 +02:00
};
}