From a5525a4c724757c7285d5d6356df8ea83d0c65a7 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 27 Oct 2024 19:36:13 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(syncthing):=20Install=20Syncth?= =?UTF-8?q?ing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/default.nix | 1 + home/syncthing/default.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 home/syncthing/default.nix diff --git a/home/default.nix b/home/default.nix index eabc35b..170e071 100644 --- a/home/default.nix +++ b/home/default.nix @@ -30,6 +30,7 @@ ./curl ./gh ./hyfetch + ./syncthing ./wget ./xdg ./zathura diff --git a/home/syncthing/default.nix b/home/syncthing/default.nix new file mode 100644 index 0000000..b866ac4 --- /dev/null +++ b/home/syncthing/default.nix @@ -0,0 +1,7 @@ +{...}: { + services.syncthing = { + enable = true; + + tray.enable = true; + }; +}