First commit

This commit is contained in:
2025-07-22 02:30:15 +02:00
commit e9441f563b
66 changed files with 4401 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{
pkgs,
...
}:
{
environment.systemPackages = with pkgs; [
picom
];
environment.etc = {
"xdg/picom/picom.conf".source = ./config/picom.conf;
};
}