diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-21 18:00:30 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-21 18:00:30 -0700 |
commit | 0a7cb08c4bf45682b98b6fa443612c20eb3c64ae (patch) | |
tree | c0bddf791c64776efc9e7e5e160da775e9100874 /home | |
parent | syncthing: let's run it from home-manager (diff) | |
download | world-0a7cb08c4bf45682b98b6fa443612c20eb3c64ae.tar.gz |
syncthing: enable on tahoe
Diffstat (limited to '')
-rw-r--r-- | home/syncthing/default.nix | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/home/syncthing/default.nix b/home/syncthing/default.nix deleted file mode 100644 index 4e8e4f3..0000000 --- a/home/syncthing/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ 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; - }; - }; -} |