Move syncthing into its own module

This commit is contained in:
Oliver Davies 2024-05-02 17:29:35 +01:00
parent 3d8493f050
commit 41167cf442
2 changed files with 2 additions and 2 deletions

View file

@ -6,8 +6,6 @@
programs.home-manager.enable = true; programs.home-manager.enable = true;
services.syncthing.enable = true;
imports = [ imports = [
(import ./modules/neovim.nix { inherit inputs; }) (import ./modules/neovim.nix { inherit inputs; })
./modules/bat.nix ./modules/bat.nix
@ -20,6 +18,7 @@
./modules/phpactor.nix ./modules/phpactor.nix
./modules/ripgrep.nix ./modules/ripgrep.nix
./modules/starship.nix ./modules/starship.nix
./modules/syncthing.nix
./modules/tmux.nix ./modules/tmux.nix
./modules/zsh.nix ./modules/zsh.nix
]; ];

View file

@ -0,0 +1 @@
{ services.syncthing.enable = true; }