Enable syncthing server on alto

This commit is contained in:
SebastianStork 2025-04-13 01:35:43 +02:00
parent da7a7b7328
commit 896549c6fb
2 changed files with 24 additions and 8 deletions

View file

@ -8,10 +8,12 @@ in
myConfig = {
boot.loader.systemdBoot.enable = true;
sops.enable = true;
tailscale = {
enable = true;
ssh.enable = true;
exitNode.enable = true;
serve = {
isFunnel = true;
target = "localhost:${toString myConfig.hedgedoc.port}";
@ -42,5 +44,9 @@ in
backups.enable = true;
subdomain = config.networking.hostName;
};
syncthing = {
enable = true;
isServer = true;
};
};
}