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"; }; }; }