tsuki: add syncthing

This commit is contained in:
notohh 2025-03-17 05:32:14 -04:00
parent 667d99e2e9
commit 6f3457ba2e
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 12 additions and 1 deletions

View file

@ -18,7 +18,6 @@
virtualisation = {
libvirtd.enable = true;
waydroid.enable = false;
};
services = {
pulseaudio.enable = false;

View file

@ -5,5 +5,6 @@
./hydroxide.nix
./rnnoise.nix
./immich-backup.nix
./syncthing.nix
];
}

View file

@ -0,0 +1,11 @@
_: {
services.syncthing = {
enable = true;
openDefaultPorts = true;
dataDir = "/home/notoh/sync";
configDir = "/home/notoh/.config/syncthing";
guiAddress = "localhost:8384";
user = "notoh";
group = "users";
};
}