18 lines
514 B
Nix
18 lines
514 B
Nix
|
{ pkgs, config, hostname, username, ... }: {
|
||
|
imports = [ ../../common/services/syncthing.nix ];
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
username = "${username}";
|
||
|
settings = {
|
||
|
folders = {
|
||
|
"world-of-warcraft" = {
|
||
|
enable = true;
|
||
|
id = "ergcw-ay6yg";
|
||
|
devices = [ "framework-server" "win10-desktop" ];
|
||
|
path = /home/${username}/
|
||
|
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|