backups hopper -> nixdesk with restic & restic-server

This commit is contained in:
xunuwu 2025-02-20 23:55:27 +01:00
parent 382df4af88
commit 3da5ded7dd
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
5 changed files with 63 additions and 0 deletions

View file

@ -12,6 +12,7 @@
./hibernate-boot.nix
./samba-mount.nix
./wireguard.nix
./restic-server.nix
inputs.stylix.nixosModules.stylix

View file

@ -0,0 +1,7 @@
{
services.restic.server = {
enable = true;
dataDir = "/srv/backup";
extraFlags = ["--no-auth"];
};
}