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

21 lines
645 B
Nix
Raw Normal View History

2024-02-13 14:03:41 +01:00
{ pkgs, config, hostname, username, ... }: {
2024-02-13 14:10:40 +01:00
imports = [ ../../common/services/syncthing.nix ];
2024-02-13 14:03:41 +01:00
services.syncthing = {
enable = true;
2024-02-13 14:20:05 +01:00
user = "${username}";
2024-02-13 14:03:41 +01:00
settings = {
folders = {
"world-of-warcraft" = {
enable = true;
id = "ergcw-ay6yg";
2024-02-13 14:10:40 +01:00
devices = [
"framework-server"
"win10-desktop"
];
2024-02-13 14:03:47 +01:00
path = "/home/${username}/Games/battlenet/drive_c/Program Files (x86)/World of Warcraft/";
2024-02-13 14:03:41 +01:00
};
};
};
};
}