dotfiles.nix/home-manager/sajenim/features/desktop/picom.nix

15 lines
247 B
Nix
Raw Normal View History

2024-08-08 09:02:42 +08:00
{...}: {
2023-04-07 07:19:41 +08:00
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-28 19:04:39 +08:00
"window_type = 'dock'"
2024-01-29 22:29:07 +08:00
"class_g = 'Rofi'"
2023-04-07 07:19:41 +08:00
];
};
};
}