feat: added rsync

This commit is contained in:
Nick 2025-10-14 00:16:40 -05:00
parent e9b5dd13f7
commit 0ac81d4570

View file

@ -0,0 +1,11 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
rsync
;
};
}