diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-10-11 21:02:35 +0200 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-10-11 21:23:05 +0200 |
| commit | eeb53599fb7f7a6ae9543f37538d6eef69b5d81c (patch) | |
| tree | 9794865aeb3664d85e9f2c0691140eb920f9f558 /home-modules/services/syncthing.nix | |
| parent | 38231218792e8cb112c229fc6b55cdcb5caae95c (diff) | |
Bunch of updates:
- Fixed not having virt-manager
- Added Steam
- Removed old ssd mounts on apocalypse
- Fixed syncthing service
- Probably some spotify stuff
Diffstat (limited to '')
| -rw-r--r-- | home-modules/services/syncthing.nix | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/home-modules/services/syncthing.nix b/home-modules/services/syncthing.nix index 06b94a2..b264433 100644 --- a/home-modules/services/syncthing.nix +++ b/home-modules/services/syncthing.nix @@ -1,7 +1,9 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib ,... }: { - services.syncthing = { - enable = true; + config = lib.mkIf config.homeapps.presets.connectivity.enable { + services.syncthing = { + enable = true; + }; }; } |
