Move syncthing to system service on buck

This commit is contained in:
Jacob Hinkle 2022-09-06 15:31:20 -04:00
parent 181a0c10af
commit f805c215cc
3 changed files with 8 additions and 1 deletions

View File

@ -195,7 +195,7 @@
};
};
syncthing = {
enable = true;
enable = false;
# cause the tray command to wait for the service and tray manager to start
#extraOptions = [ "--wait" ];
tray.enable = false;

View File

@ -117,6 +117,8 @@
#media-session.enable = true;
};
syncthing = import ./syncthing.nix;
# Enable the X11 windowing system. services.xserver.enable = true;
xserver = {
enable = true;

View File

@ -0,0 +1,5 @@
{
enable = true;
dataDir = "/home/jacob/Sync";
#guiAddress = "0.0.0.0:8234"; # for headless
}