From f721cd89106b8fb585ea09932bf9b7e09195140a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 24 Aug 2024 04:07:47 +0200 Subject: [PATCH] Configure nextcloud syncs --- profiles/Generic/config.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/profiles/Generic/config.nix b/profiles/Generic/config.nix index 729006ef..c7422ad3 100644 --- a/profiles/Generic/config.nix +++ b/profiles/Generic/config.nix @@ -63,6 +63,26 @@ }; }; + windows.users.manuel = { + nextcloud = { + folderSyncs = + let + localPath = "C:/tools/RetroArch-Win64"; + remotePath = "/Saved Games/RetroArch"; + in [ + { + remotePath = "${remotePath}/Saves"; + localPath = "${localPath}/saves"; + virtualFiles = false; + } + { + remotePath = "${remotePath}/System"; + localPath = "${localPath}/system"; + } + ]; + }; + }; + timeZone = "Europe/Zurich"; keyMap = "de_CH-latin1"; keyboardLayout = "ch";