marleyos/modules/home/services/syncthing/default.nix

33 lines
520 B
Nix
Raw Normal View History

2024-11-16 21:29:25 -08:00
{
lib,
config,
namespace,
pkgs,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule;
2024-11-16 21:29:25 -08:00
cfg = config.marleyos.services.syncthing;
2024-11-16 21:29:25 -08:00
in
{
2024-11-16 23:05:17 -08:00
options.marleyos = mkEnableModule "services.syncthing";
2024-11-16 21:29:25 -08:00
config = mkIf cfg.enable {
home.packages = [
config.services.syncthing.tray.package
];
services.syncthing = {
enable = true;
tray = {
enable = true;
command = "syncthingtray";
package = pkgs.syncthingtray-minimal;
};
};
};
}