Hey there, so I’m experiencing a strange issue. Restic seems to be working fine on my home server (running Unraid, pushing to a Hetzner Storage Box). I can init repos, make snapshots, view the snapshots, no problem. But on my desktop running NixOS (I’ve tried builds from both the stable and unstable repos) I can init repos, push snapshots, theoretically at least, and open the repository. But I can’t see any snapshots and when I try to view the stats it loads all the index files, but says 0 bytes.
Everything is configured the exact same .env file with RESTIC_HOST RESTIC_PASSWORD and _RESTIC_PACK_SIZE. I even initialized this specific repo from my desktop, and then pushed the snapshot from my server.
But when I run restic -r rclone:hetzner:/home/backup/music stats
on my server I get this
repository 71a2a9f4 opened (version 2, compression level auto)
[0:02] 100.00% 143 / 143 index files loaded
scanning...
Stats in restore-size mode:
Snapshots processed: 1
Total File Count: 143257
Total Size: 2.131 TiB
but when run on the same repo from my desktop I get this
repository 71a2a9f4 opened (version 2, compression level auto)
[0:02] 100.00% 143 / 143 index files loaded
scanning...
Stats in restore-size mode:
Snapshots processed: 0
Total Size: 0 B
Here is the output of the snapshots command from my server:
repository 71a2a9f4 opened (version 2, compression level auto)
ID Time Host Tags Paths
-------------------------------------------------------------------------------
8a57ee9d 2025-02-26 15:20:35 mediaserver /mnt/user/music/library
-------------------------------------------------------------------------------
1 snapshots
and from my desktop (just a blank line output after the repo is opened):
repository 71a2a9f4 opened (version 2, compression level auto)
Any ideas what’s going on here?