dotfiles.nix/home-manager/services/picom.nix

17 lines
296 B
Nix
Raw Normal View History

2023-04-07 07:19:41 +08:00
{ inputs, outputs, lib, config, pkgs, ... }:
{
services.picom = {
enable = true;
shadow = true;
2023-04-25 08:06:20 +08:00
backend = "glx";
2023-04-07 07:19:41 +08:00
settings = {
2023-04-25 08:06:20 +08:00
corner-radius = 10;
2023-04-07 07:19:41 +08:00
rounded-corners-exclude = [
2023-04-25 08:06:20 +08:00
# "window_type = 'normal'"
# "window_type = 'dock'"
2023-04-07 07:19:41 +08:00
];
};
};
}