From 95c9091299e51cb20ab77d55aa1a695703879e86 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Thu, 4 Jan 2024 17:51:05 +0100 Subject: [PATCH] Add syncthing --- nixos-configurations/pc/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos-configurations/pc/default.nix b/nixos-configurations/pc/default.nix index 0ced3a7..f1c0d4d 100644 --- a/nixos-configurations/pc/default.nix +++ b/nixos-configurations/pc/default.nix @@ -18,6 +18,14 @@ }; services = { + syncthing = { + enable = true; + user = "thiloho"; + overrideFolders = true; + configDir = "/home/thiloho/.config/syncthing"; + dataDir = "/home/thiloho"; + openDefaultPorts = true; + }; postgresql = { enable = true; package = pkgs.postgresql_15;