server-backup-config/shell.nix

9 lines
175 B
Nix

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