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

15 lines
234 B
Nix
Raw Permalink Normal View History

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