nix/nixos/containers/rdesktop/syncthing.nix

16 lines
416 B
Nix
Raw Normal View History

{ username, ... }: {
imports = [ ../../common/services/syncthing.nix ];
services.syncthing = {
settings = {
folders = {
2024-08-14 03:19:37 +02:00
"logseq" = {
id = "logseq";
path = "/home/${username}/.logseq";
2024-08-14 05:26:22 +02:00
devices = [ "framework-server" "nixos-desktop" "nixos-framework" "rdesktop" ];
};
};
};
};
}