marleyos/modules/home/services/syncthing/default.nix
2024-11-16 21:29:25 -08:00

32 lines
519 B
Nix

{
lib,
config,
namespace,
pkgs,
...
}:
let
inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule;
cfg = config.${namespace}.services.syncthing;
in
{
options = mkEnableModule "services.syncthing";
config = mkIf cfg.enable {
home.packages = [
config.services.syncthing.tray.package
];
services.syncthing = {
enable = true;
tray = {
enable = true;
command = "syncthingtray";
package = pkgs.syncthingtray-minimal;
};
};
};
}