aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-08 16:46:07 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-08 16:46:07 -0700
commite0ad8ed3f05b21bc46e88dbb03ddea12d1273b93 (patch)
tree7f5a2777309db23e6c2bb2efa544488955cf33ac /hosts
parenthome: move waybar's style to a CSS file (diff)
downloadinfra-e0ad8ed3f05b21bc46e88dbb03ddea12d1273b93.tar.gz
delete unused module
Diffstat (limited to 'hosts')
-rw-r--r--hosts/common/server/backups/users.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/hosts/common/server/backups/users.nix b/hosts/common/server/backups/users.nix
deleted file mode 100644
index d56f7fe..0000000
--- a/hosts/common/server/backups/users.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, ... }:
-
-{
-
- systemd.services.backups-maintenance-fcuny = {
- Unit = {
- Description = "maintenance for fcuny backups";
- Documentation = "man:restic(1)";
- };
- Service = {
- Type = "oneshot";
- User = "restic";
- ReadWritePaths = "/data/slow/backups/users/fcuny";
- Environment = [
- "RESTIC_REPOSITORY=/data/slow/backups/users/fcuny"
- "RESTIC_PASSWORD_FILE="
- ];
- ExecStart = [
- "${pkgs.restic}/bin/restic --verbose rebuild-index"
- "${pkgs.restic}/bin/restic --verbose prune"
- "${pkgs.restic}/bin/restic --verbose forget --prune --keep-daily 7 --keep-weekly 4 --keep-monthly 12 --keep-yearly 3"
- ];
- };
- };
-}