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
home/opdavies/hosts
hosts/PW05CH3L
modules/home-manager/cli

View file

@ -8,7 +8,6 @@
directory = "$HOME/Documents/wiki/tfw-notes";
};
syncthing.enable = true;
tmux.enable = true;
tmux-sessionizer.enable = true;
};

View file

@ -14,7 +14,6 @@
mpv.enable = true;
pocket-casts.enable = true;
slack.enable = true;
syncthing.enable = true;
tmux-sessionizer.enable = true;
zoom.enable = true;
};

View file

@ -4,6 +4,5 @@
homeManagerModules = {
direnv.enable = true;
dwm.enable = true;
syncthing.enable = true;
};
}

View file

@ -24,7 +24,6 @@
pocket-casts.enable = true;
slack.enable = true;
syncthing.enable = true;
tmux.enable = true;
tmux-sessionizer.enable = true;
zoom.enable = true;

View file

@ -24,7 +24,5 @@
defaultUser = username;
};
services.syncthing.enable = true;
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
}

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;
};
}