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