From 69afd4bdab235de3b0692e5437231265d1e0221a Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 3 Jan 2024 19:54:12 +0100 Subject: [PATCH] Gaming/retroarch: bring back syncthing --- roles/gaming/programs/retroarch.nix | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/roles/gaming/programs/retroarch.nix b/roles/gaming/programs/retroarch.nix index d9ef702..3f957f8 100644 --- a/roles/gaming/programs/retroarch.nix +++ b/roles/gaming/programs/retroarch.nix @@ -74,30 +74,15 @@ in }; # Retroarch is dumb since it doesn't generate this folder (but it does for others) systemd.user.tmpfiles.rules = [ "d /%h/.local/share/retroarch/playlists" ]; - # Add a syncthing ignore file to the retroarch folder - xdg.configFile."retroarch-stignore" = { - enable = false; - target = "retroarch/.stignore"; - text = '' - !saves - !states - !database - !playlists - - // Ignore everything except stuff above - * - ''; - }; }; # Sync saves and some other stuff services.syncthing.settings.folders = { "retroarch" = { - enable = false; label = "RetroArch"; id = "jxuou-2yjnu"; devices = [ "steamdeck" "pc" ]; - path = "~/.config/retroarch"; + path = "~/.local/share/retroarch"; }; }; }