users/infinidoge: disable prismlauncher sync where unnecessary

This commit is contained in:
Infinidoge 2025-05-07 00:02:21 -04:00
parent e376c1e30d
commit 735e3231ed
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E

View file

@ -40,22 +40,25 @@ in
services.unison = {
enable = true;
pairs = {
"PrismLauncher" = mkIf (main.networking.hostName != "Infini-DL360") {
roots = [
"/home/infinidoge/.local/share/PrismLauncher"
"ssh://inx.moe/sync/PrismLauncher"
];
commandOptions = {
ignore = [
"BelowPath cache"
"BelowPath logs"
"BelowPath **/logs"
"Path **/*.log"
"BelowPath meta"
"Path metacache"
];
};
};
"PrismLauncher" =
mkIf
(main.networking.hostName != "Infini-DL360" && main.modules.desktop.gaming.prismlauncher.enable)
{
roots = [
"/home/infinidoge/.local/share/PrismLauncher"
"ssh://inx.moe/sync/PrismLauncher"
];
commandOptions = {
ignore = [
"BelowPath cache"
"BelowPath logs"
"BelowPath **/logs"
"Path **/*.log"
"BelowPath meta"
"Path metacache"
];
};
};
};
};