nix/nixos/containers/rdesktop/syncthing.nix

15 lines
413 B
Nix

{ 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" ];
};
};
};
};
}