server-backup-config/shell.nix

10 lines
186 B
Nix
Raw Normal View History

2023-03-29 19:43:27 +00:00
with import <nixpkgs> {};
mkShell {
name = "Dependencies for Server Backup";
buildInputs = [borgbackup borgmatic sshfs];
shellHook = ''
echo "Good luck backing up!"
'';
}