mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 13:29:32 +01:00
fixed: added missing option
This commit is contained in:
parent
85fe356b06
commit
e0b1022a1c
|
@ -1,7 +1,7 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
sops.secrets.borgRepoPassword = {};
|
||||
|
||||
sops.secrets.borgRepoPassword = { };
|
||||
|
||||
services.borgbackup.jobs = {
|
||||
localBackup = {
|
||||
paths = "/";
|
||||
|
@ -21,17 +21,19 @@
|
|||
startAt = "weekly";
|
||||
};
|
||||
|
||||
/*
|
||||
serverBackup = {
|
||||
|
||||
};
|
||||
*/
|
||||
};
|
||||
|
||||
services.borgbackup.repos = {
|
||||
borgPersonalServer = {
|
||||
authorizedKeys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHyeTAANyYqMFded6mJHWuhGVXROu3TqDV2b8icjolfO root@meowcats-silly-computer"
|
||||
];
|
||||
path = "/srv/backups/localComputerBackups";
|
||||
};
|
||||
|
||||
/*
|
||||
serverBackup = {
|
||||
|
||||
};
|
||||
*/
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue