diff --git a/nixos/containers/rdesktop/syncthing.nix b/nixos/containers/rdesktop/syncthing.nix new file mode 100644 index 00000000..1426cccc --- /dev/null +++ b/nixos/containers/rdesktop/syncthing.nix @@ -0,0 +1,15 @@ +{ username, ... }: { + imports = [ ../../common/services/syncthing.nix ]; + + services.syncthing = { + settings = { + folders = { + "notes" = { + id = "notes"; + path = "/home/${username}/notes"; + devices = [ "framework-server" "nixos-desktop" "nixos-framework" "rdesktop" ]; + }; + }; + }; + }; +}