adapts backup paths

This commit is contained in:
Dennis Schoepf 2026-03-10 20:39:55 +01:00
parent f2d2d5b792
commit 31976a7c9c
3 changed files with 6 additions and 4 deletions

View file

@ -68,8 +68,10 @@ in
restic.repository = "sftp:dnsc-storage:restic/dnsc-server"; restic.repository = "sftp:dnsc-storage:restic/dnsc-server";
restic.backupPaths = [ restic.backupPaths = [
"/var/backup/vaultwarden" "/var/backup/vaultwarden"
"/data/actual-server" "/var/lib/vaultwarden"
"/data/memos" "/var/lib/actual-server"
"/var/lib/memos"
"/var/lib/uptime-kuma"
]; ];
} }
) )

View file

@ -52,7 +52,7 @@
{ {
title = "Notes"; title = "Notes";
url = "https://notes.dnsc.io"; url = "https://notes.dnsc.io";
icon = "si:memos"; icon = "si:parrotsecurity";
} }
{ {
title = "Uptime Kuma"; title = "Uptime Kuma";

View file

@ -8,7 +8,7 @@
settings = { settings = {
MEMOS_MODE = "prod"; MEMOS_MODE = "prod";
MEMOS_PORT = "9003"; MEMOS_PORT = "9003";
MEMOS_DATA = "/data/memos"; MEMOS_DATA = "/var/lib/memos";
MEMOS_DRIVER = "sqlite"; MEMOS_DRIVER = "sqlite";
MEMOS_INSTANCE_URL = "https://notes.dnsc.io"; MEMOS_INSTANCE_URL = "https://notes.dnsc.io";
}; };