1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-20 21:37:30 +02:00
home-manager/modules/services/syncthing.nix
2017-07-18 12:50:30 +02:00

28 lines
525 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
options = {
services.syncthing = {
enable = mkEnableOption "Syncthing";
};
};
config = mkIf config.services.syncthing.enable {
systemd.user.services.syncthing = {
Unit = {
Description = "Syncthing";
After = [ "network.target" ];
};
Install = {
WantedBy = [ "default.target" ];
};
Service = {
ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser";
};
};
};
}