server-backup-config/shell.nix

9 lines
186 B
Nix

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