nix-dotfiles/modules/picom.nix

10 lines
135 B
Nix

{ pkgs, ... }:
{
services.picom = {
enable = true;
blur = true;
fade = true;
shadow = true;
vSync = true;
};
}