diff --git a/nixos/hosts/nixos-framework/syncthing.nix b/nixos/hosts/nixos-framework/syncthing.nix new file mode 100644 index 00000000..c843461a --- /dev/null +++ b/nixos/hosts/nixos-framework/syncthing.nix @@ -0,0 +1,18 @@ +{ 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}/ + + }; + }; + }; + }; +} \ No newline at end of file