initial commit

This commit is contained in:
2024-12-31 04:29:58 -05:00
commit 69ed9b2d4d
41 changed files with 4509 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{
config,
pkgs,
...
}: {
services.picom = {
enable = true;
shadow = false;
fade = false;
activeOpacity = 1.0;
inactiveOpacity = 1.0; # yeah, i'm a freak like that
backend = "xrender"; # can use "glx"
};
}