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