nixpkgs/nixos/modules/services/misc/safeeyes.nix

51 lines
762 B
Nix
Raw Normal View History

2018-04-04 20:15:16 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.safeeyes;
in
{
###### interface
options = {
services.safeeyes = {
enable = mkOption {
default = false;
description = "Whether to enable the safeeyes OSGi service";
};
};
};
###### implementation
config = mkIf cfg.enable {
systemd.user.services.safeeyes = {
description = "Safeeyes";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = ''
${pkgs.safeeyes}/bin/safeeyes
'';
2018-04-10 18:06:38 +00:00
Restart = "on-failure";
2018-04-04 20:15:16 +00:00
RestartSec = 3;
2018-04-10 18:06:38 +00:00
StartLimitInterval = 350;
StartLimitBurst = 10;
2018-04-04 20:15:16 +00:00
};
};
};
}