nix/nixos/hosts/nixos-framework/syncthing.nix

20 lines
682 B
Nix
Raw Normal View History

{ username, ... }: {
2024-08-14 15:40:13 +02:00
imports = [ ../../common/services/syncthing.nix ];
services.syncthing = {
settings = {
folders = {
"kenshi-saves" = {
id = "kenshi";
path = "/home/${username}/.steam/steam/steamapps/compatdata/233860/pfx/drive_c/users/steamuser/AppData/Local/kenshi/";
devices = [ "framework-server" "nixos-desktop" "nixos-framework" ];
2024-02-13 14:03:41 +01:00
};
2024-08-14 15:40:13 +02:00
"world-of-warcraft" = {
id = "ergcw-ay6yg";
path = "/home/${username}/Games/battlenet/drive_c/Program Files (x86)/World of Warcraft/";
devices = [ "framework-server" "nixos-desktop" "nixos-framework" ];
};
};
2024-02-13 14:03:41 +01:00
};
2024-08-14 15:40:13 +02:00
};
2024-03-09 16:24:37 +01:00
}