rework home.nix

This commit is contained in:
♥ Minnie ♥ 2023-07-23 08:27:44 +08:00
parent f8a85b19cb
commit 4632614919
6 changed files with 24 additions and 33 deletions

View file

@ -0,0 +1,15 @@
{ ... }:
{
services.picom = {
enable = true;
shadow = true;
backend = "glx";
settings = {
corner-radius = 10;
rounded-corners-exclude = [
"window_type = 'dock'"
];
};
};
}