From f5504dfe30893f6c5950489ac98c283d4740e8cc Mon Sep 17 00:00:00 2001 From: Tyler Starr Date: Tue, 22 Oct 2024 19:23:57 -0700 Subject: [PATCH] add rom saves to syncthing --- provision/hosts/bulwark/syncthing.nix | 4 ++++ provision/hosts/kestrel/syncthing.nix | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/provision/hosts/bulwark/syncthing.nix b/provision/hosts/bulwark/syncthing.nix index c0a7d59b..4213cf9f 100644 --- a/provision/hosts/bulwark/syncthing.nix +++ b/provision/hosts/bulwark/syncthing.nix @@ -38,6 +38,10 @@ path = "/home/${user}/.config/ppsspp/PSP/PPSSPP_STATE"; devices = [ "kestrel" ]; }; + "Roms Saves" = { + path = "/home/${user}/media/roms/saves"; + devices = [ "kestrel" ]; + }; }; }; } diff --git a/provision/hosts/kestrel/syncthing.nix b/provision/hosts/kestrel/syncthing.nix index 11cbf4d7..83d420f7 100644 --- a/provision/hosts/kestrel/syncthing.nix +++ b/provision/hosts/kestrel/syncthing.nix @@ -45,6 +45,10 @@ path = "/home/${user}/sync"; devices = [ "shivan" ]; }; + "Rom Saves" = { + path = "/home/${user}/media/roms/saves"; + devices = [ "bulwark" ]; + }; }; }; }