From a6483a97edea8959eb88b63fb514fde534ac7953 Mon Sep 17 00:00:00 2001 From: albert Date: Wed, 14 Aug 2024 09:42:29 +0900 Subject: [PATCH] Update syncthing and update audio for rdesktop --- nixos/containers/rdesktop/syncthing.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nixos/containers/rdesktop/syncthing.nix 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" ]; + }; + }; + }; + }; +}