diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-21 17:47:57 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-21 17:47:57 -0700 |
commit | 667ae0969d82c8c79a27ba4c043918ddffbd5de2 (patch) | |
tree | 76432829ae60c346c96b061bffe1810c1090f759 /home | |
parent | modules: add syncthing as a new module (diff) | |
download | world-667ae0969d82c8c79a27ba4c043918ddffbd5de2.tar.gz |
syncthing: let's run it from home-manager
Diffstat (limited to 'home')
-rw-r--r-- | home/syncthing/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home/syncthing/default.nix b/home/syncthing/default.nix new file mode 100644 index 0000000..4e8e4f3 --- /dev/null +++ b/home/syncthing/default.nix @@ -0,0 +1,14 @@ +{ lib, config, pkgs, ... }: +let cfg = config.my.home.syncthing; +in { + options.my.home.syncthing = with lib; { + enable = mkEnableOption "syncthing configuration"; + }; + + config.home = { + services.syncthing = { + enable = true; + openDefaultPorts = true; + }; + }; +} |