nixos-config/nixosModules/home_manager/syncthing.nix
2024-04-11 01:21:49 -04:00

10 lines
No EOL
290 B
Nix

{config, lib, pkgs, modulesPath, ... }:
{
options.speccon18.home_manager.syncthing.enable = lib.mkEnableOption "enable syncthing";
config = lib.mkIf config.speccon18.home_manager.syncthing.enable {
services.syncthing = {
enable = true;
tray.enable = false;
};
};
}