nixcfg/homeManagerModules/userServices/syncthing/default.nix
2024-04-07 22:16:33 -04:00

16 lines
253 B
Nix

{
pkgs,
lib,
config,
...
}: {
options = {
userServices.syncthing.enable =
lib.mkEnableOption "Enables syncthing as user.";
};
config = lib.mkIf config.userServices.syncthing.enable {
services.syncthing.enable = true;
};
}