15 lines
413 B
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" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|