mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-03-23 01:06:41 +00:00
- Enable restic REST server service - Add Caddy route for restic REST server
8 lines
152 B
Nix
8 lines
152 B
Nix
{
|
|
services.restic.server = {
|
|
enable = true;
|
|
appendOnly = true;
|
|
listenAddress = "127.0.0.1:3003";
|
|
extraFlags = [ "--no-auth" ];
|
|
};
|
|
}
|