Merge pull request #7181 from jagajaga/teamviewer

Teamviewer

Changed files
+46
nixos
modules
services
monitoring
+1
nixos/modules/module-list.nix
···
./services/monitoring/smartd.nix
./services/monitoring/statsd.nix
./services/monitoring/systemhealth.nix
+
./services/monitoring/teamviewer.nix
./services/monitoring/ups.nix
./services/monitoring/uptime.nix
./services/monitoring/zabbix-agent.nix
+45
nixos/modules/services/monitoring/teamviewer.nix
···
+
{ config, lib, pkgs, ... }:
+
+
with lib;
+
+
let
+
+
cfg = config.services.teamviewer;
+
+
in
+
+
{
+
+
###### interface
+
+
options = {
+
+
services.teamviewer.enable = mkEnableOption "teamviewer daemon";
+
+
};
+
+
###### implementation
+
+
config = mkIf (cfg.enable) {
+
+
environment.systemPackages = [ pkgs.teamviewer ];
+
+
systemd.services.teamviewerd = {
+
description = "TeamViewer remote control daemon";
+
+
wantedBy = [ "graphical.target" ];
+
after = [ "NetworkManager-wait-online.service" "network.target" ];
+
+
serviceConfig = {
+
Type = "forking";
+
ExecStart = "${pkgs.teamviewer}/bin/teamviewerd -d";
+
PIDFile = "/run/teamviewerd.pid";
+
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+
Restart = "on-abort";
+
StartLimitInterval = "60";
+
StartLimitBurst = "10";
+
};
+
};
+
};
+
+
}