dotfiles/nix/modules/home-manager/cli/syncthing.nix

15 lines
246 B
Nix
Raw Normal View History

2025-01-07 20:55:58 +00:00
{ config, lib, ... }:
with lib;
let
cfg = config.homeManagerModules.syncthing;
2025-01-07 20:55:58 +00:00
in
{
options.homeManagerModules.syncthing.enable = mkEnableOption "Enable syncthing";
2025-01-07 20:55:58 +00:00
config = mkIf cfg.enable {
services.syncthing.enable = true;
};
}