From 49c192a28c4de35eed457effd26be4f424e71ada Mon Sep 17 00:00:00 2001 From: buffet Date: Tue, 19 Mar 2024 22:10:56 +0100 Subject: [PATCH] feat: enable syncthing --- hosts/alice/default.nix | 1 + hosts/alice/syncthing.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 hosts/alice/syncthing.nix diff --git a/hosts/alice/default.nix b/hosts/alice/default.nix index f8eabe4..e61aff5 100644 --- a/hosts/alice/default.nix +++ b/hosts/alice/default.nix @@ -19,6 +19,7 @@ ./pipewire.nix ./printer.nix ./sway.nix + ./syncthing.nix ./tlp.nix ../../users/buffet diff --git a/hosts/alice/syncthing.nix b/hosts/alice/syncthing.nix new file mode 100644 index 0000000..cb4b920 --- /dev/null +++ b/hosts/alice/syncthing.nix @@ -0,0 +1,7 @@ +_: { + services.syncthing = { + enable = true; + user = "buffet"; + dataDir = "/home/buffet"; + }; +}