From 0ac81d4570457746360097f48a131035de2bfc17 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 14 Oct 2025 00:16:40 -0500 Subject: [PATCH] feat: added rsync --- modules/home/cli/utilities/rsync/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/home/cli/utilities/rsync/default.nix diff --git a/modules/home/cli/utilities/rsync/default.nix b/modules/home/cli/utilities/rsync/default.nix new file mode 100644 index 0000000..dfef0a8 --- /dev/null +++ b/modules/home/cli/utilities/rsync/default.nix @@ -0,0 +1,11 @@ +{ + pkgs, + ... +}: +{ + home.packages = builtins.attrValues { + inherit (pkgs) + rsync + ; + }; +}