dotfiles.nix/home-manager/sajenim/services/picom.nix
2023-05-15 21:11:30 +08:00

17 lines
294 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }:
{
services.picom = {
enable = true;
shadow = true;
backend = "glx";
settings = {
corner-radius = 10;
rounded-corners-exclude = [
# "window_type = 'normal'"
"window_type = 'dock'"
];
};
};
}