From 2b9b157679ac34d8d1bd4d4c19b4602ccb047d1c Mon Sep 17 00:00:00 2001 From: Katherina Walshe-Grey Date: Mon, 5 Aug 2024 04:12:16 +0100 Subject: [PATCH] shaw: init, install syncthing --- hosts/shaw/home.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hosts/shaw/home.nix diff --git a/hosts/shaw/home.nix b/hosts/shaw/home.nix new file mode 100644 index 0000000..67c36e0 --- /dev/null +++ b/hosts/shaw/home.nix @@ -0,0 +1,11 @@ +{ config, lib, pkgs, ... }: + +{ + services.syncthing = { + enable = true; + extraOptions = [ + "--gui-address=:8385" + "--home=/home/qenya/state/syncthing" + ]; + }; +}