summaryrefslogtreecommitdiff
path: root/home/syncthing/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/syncthing/default.nix')
-rw-r--r--home/syncthing/default.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/home/syncthing/default.nix b/home/syncthing/default.nix
deleted file mode 100644
index e234c42..0000000
--- a/home/syncthing/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ config, lib, ... }:
-with lib; let
- cfg = config.local.syncthing;
-in
-{
- options.local.syncthing = {
- enable = mkEnableOption "syncthing";
- };
-
- config = mkIf cfg.enable {
- services.syncthing = {
- enable = true;
- };
- };
-}