server-backup-config/shell.nix

10 lines
175 B
Nix
Raw Permalink Normal View History

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