From e28c7f8968808f4e8e907280806ef453b2f5da48 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 26 May 2025 15:46:10 -0400 Subject: [PATCH] Persist icons and play stats. --- nix/configuration/roles/rpcs3/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/nix/configuration/roles/rpcs3/default.nix b/nix/configuration/roles/rpcs3/default.nix index 0f55ac4..3be8efc 100644 --- a/nix/configuration/roles/rpcs3/default.nix +++ b/nix/configuration/roles/rpcs3/default.nix @@ -130,6 +130,22 @@ in group = "talexander"; mode = "0755"; } + { + # Game icons. + directory = ".config/rpcs3/Icons"; + user = "talexander"; + group = "talexander"; + mode = "0755"; + } + ]; + files = [ + { + # play times and recently played + file = ".config/rpcs3/GuiConfigs/persistent_settings.dat"; + parentDirectory = { + mode = "0755"; + }; + } ]; }; };