This commit is contained in:
alsaiduq-lab 2025-07-05 20:19:16 -06:00
parent f390e57033
commit bf03f98a7d
4 changed files with 43 additions and 10 deletions

View file

@ -1,5 +1,15 @@
{pkgs, ...}: {
{
i3dotfiles,
pkgs,
...
}: {
home.packages = with pkgs; [
picom
];
xdg.configFile."picom" = {
source = "${i3dotfiles}/picom";
recursive = true;
force = true;
};
}