Remove syncthing configuration

This commit is contained in:
Oliver Davies 2025-03-13 20:53:30 +00:00
parent 5a7252e7d0
commit d5acca9440
7 changed files with 0 additions and 21 deletions
nix/modules/home-manager/cli

View file

@ -11,7 +11,6 @@
./notes.nix
./phpactor.nix
./starship.nix
./syncthing.nix
./tmux.nix
./tmux-sessionizer.nix
./zsh.nix

View file

@ -1,14 +0,0 @@
{ config, lib, ... }:
with lib;
let
cfg = config.homeManagerModules.syncthing;
in
{
options.homeManagerModules.syncthing.enable = mkEnableOption "Enable syncthing";
config = mkIf cfg.enable {
services.syncthing.enable = true;
};
}