removed borgbackup as dependency

This commit is contained in:
Peter Kannewitz 2023-03-30 10:11:04 +02:00
parent c14f0538f3
commit 855334b289

View file

@ -2,7 +2,7 @@ with import <nixpkgs> {};
mkShell {
name = "Dependencies for Server Backup";
buildInputs = [borgbackup borgmatic sshfs];
buildInputs = [borgmatic sshfs];
shellHook = ''
echo "Good luck backing up!"
'';