{ pkgs, ... }:

pkgs.writeShellApplication {
  name = "clerie-backup";
  text = builtins.readFile ./clerie-backup.sh;
  runtimeInputs = with pkgs; [
    restic
  ];
}