Files
nix-config/homes/vbox/home.nix

15 lines
185 B
Nix

{ config, lib, pkgs, ... }:
{
services.picom = {
backend = "xrender";
settings = {
blur = {
method = "none";
size = 0;
deviation = 0.0;
};
};
};
}