nix/nixos/containers/rdesktop/syncthing.nix
2024-08-14 13:37:11 +09:00

15 lines
433 B
Nix

{ username, ... }: {
imports = [ ../../common/services/syncthing.nix ];
services.syncthing = {
settings = {
folders = {
"logseq" = {
id = "logseq";
path = "/home/${username}/.logseq";
devices = [ "framework-server" "nixos-desktop" "nixos-framework" "rdesktop" "google-pixel-8" ];
};
};
};
};
}