nixcfg/homeManagerModules/services/syncthing/default.nix

16 lines
267 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
2024-03-28 19:52:15 -04:00
options = {
alyraffauf.services.syncthing.enable =
2024-03-28 19:52:15 -04:00
lib.mkEnableOption "Enables syncthing as user.";
};
config = lib.mkIf config.alyraffauf.services.syncthing.enable {
2024-03-28 19:52:15 -04:00
services.syncthing.enable = true;
};
}