1
0

pkgs/clerie-backup: Add script to unify backup configs

This commit is contained in:
2025-02-14 13:09:59 +01:00
parent f353d7b494
commit d17c2855ac
4 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "clerie-backup";
text = builtins.readFile ./clerie-backup.sh;
runtimeInputs = with pkgs; [
restic
];
}