nixos/home/desktop/picom.nix

17 lines
280 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{...}: {
services.picom = {
enable = true;
backend = "glx";
activeOpacity = 1.0;
inactiveOpacity = 1.0;
menuOpacity = 1.0;
settings = {
blur = {
method = "dual_kawase";
strength = 5;
};
2023-07-02 17:24:36 +01:00
corner-radius = 10;
};
};
}